People: I tried the AppleScript published in the latest MacWorld to open multiple URLs with one click. Here it is:
try
tell application "Internet Explorer"
GetURL "http://maccentral.macworld.com/"
Activate
end tell
on error
end try
This works for IE but when I replace "Internet Explorer" with "Navigator" (chimera) I get an end of line error after GetURL. I tried OpenURL but that did not seem to work. Any ideas? Thanks!
try
tell application "Internet Explorer"
GetURL "http://maccentral.macworld.com/"
Activate
end tell
on error
end try
This works for IE but when I replace "Internet Explorer" with "Navigator" (chimera) I get an end of line error after GetURL. I tried OpenURL but that did not seem to work. Any ideas? Thanks!