I have a problem in which safari will insist in opening a new window or tab for each of the pages I want. To make some webcomics easier to read, I normally open up about 10 of them then use the Farward and Back keys. I can’t do this if I use a new window or tab each time. How can i force it to open in the same window?
Hi,
Do you mean something like this?
set myLinks to {"http://www.apple.com/applescript/guidebook/sbrt/index.html", "http://www.apple.com/applescript/guidebook/sbrt/pgs/sbrt.00.htm", "http://www.apple.com/applescript/guidebook/sbrt/pgs/sbrt.01.htm", "http://www.apple.com/applescript/guidebook/sbrt/pgs/sbrt.02.htm", "http://www.apple.com/applescript/guidebook/sbrt/index.html"}
tell application "Safari"
activate
repeat with myLink in myLinks
set URL of front document to myLink
delay 3
end repeat
end tell
Best wishes
John M
YES! Thats EXACTLY what I ment! Thanks!