Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Integration of Tips' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Integration of Tips
Authored by: zarkon55 on Nov 16, '03 12:40:16PM

All of these tab tricks do not work in latest Panther 10.3.1

Try this instead:

tell application "Safari"
activate

my new_tab()
set the URL of document 1 to "http://news.google.com/news/en/us/technology.html"
my new_tab()
set the URL of document 1 to "http://news.com.com/"
my new_tab()
set the URL of document 1 to "http://maccentral.macworld.com/"
my new_tab()
set the URL of document 1 to "http://www.versiontracker.com/macosx/"

end tell

on new_tab()

delay 1
tell application "System Events"
tell process "Safari"
keystroke "t" using command down
end tell
end tell

end new_tab



[ # ]