Created
October 22, 2015 09:16
-
-
Save bjorne/316ddcc266e00666def1 to your computer and use it in GitHub Desktop.
Cycle Safari Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Safari" | |
set theWindows to windows | |
set win1 to item 1 of theWindows | |
set win2 to item 2 of theWindows | |
repeat | |
tell win1 | |
set index to 1 | |
set visible to false | |
set visible to true | |
end tell | |
delay 15 | |
tell win2 | |
set index to 1 | |
set visible to false | |
set visible to true | |
end tell | |
delay 15 | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment