Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
Apple Computing Products:
macOS - Apps and Programs
Need help by people experienced with AppleScript!
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Frown" data-source="post: 875214" data-attributes="member: 110998"><p>I need a script for AppleScript that makes Safari load a specified web page once every 30 minutes, in separate windows. I've got this so far:</p><p></p><p>[code]</p><p>open_safari_window("http://www.apple.com")</p><p></p><p>on open_safari_window(my_url)</p><p> tell application "Safari"</p><p> repeat with i from 1 to 10</p><p> # wake up safari</p><p> activate</p><p> </p><p> # make a new window</p><p> make new document at end of documents</p><p> </p><p> # set the URL of this new window</p><p> tell document i</p><p> set URL to my_url</p><p> end tell</p><p></p><p> # sleep 1800 seconds (30 minutes)</p><p> delay 1800</p><p> end repeat</p><p> end tell</p><p>end open_safari_window</p><p></p><p>[/code]</p><p></p><p>But it doesn't let me compile it. Anybody got any tips?</p></blockquote><p></p>
[QUOTE="Frown, post: 875214, member: 110998"] I need a script for AppleScript that makes Safari load a specified web page once every 30 minutes, in separate windows. I've got this so far: [code] open_safari_window("http://www.apple.com") on open_safari_window(my_url) tell application "Safari" repeat with i from 1 to 10 # wake up safari activate # make a new window make new document at end of documents # set the URL of this new window tell document i set URL to my_url end tell # sleep 1800 seconds (30 minutes) delay 1800 end repeat end tell end open_safari_window [/code] But it doesn't let me compile it. Anybody got any tips? [/QUOTE]
Verification
Name this item 🌈
Post reply
Forums
Apple Computing Products:
macOS - Apps and Programs
Need help by people experienced with AppleScript!
Top