You may need a script to automate. One below is in biterscripting (
http://www.biterscripting.com/install.html ) . It will automatically open all local files referred/linked on a web page
one by one.
CODE
var str page; cat "http://something..." > $page
var str links; script SS_URLs.txt URL($page) > $links
# Do one link at a time. Is it a local text file ?
while ($links <> "")
do
var str link; lex "1" $links > $link
# Is there a file:// in this ? If so, it is a local file.
if ( { sen -c "^file://^" $link } > 0 )
do
# Edit this file.
var str file; stex -c "^file://^[" $link > $file
system edit ("\""+$file+"\"")
done
endif
done
Make sure you install all sample scripts from the installation instructions, because the script
SS_URLs.txt we are using above is a sample script. Email me if you need help.
Richard