Skip to content

Instantly share code, notes, and snippets.

@bjorne
Created October 22, 2015 09:16
Show Gist options
  • Save bjorne/316ddcc266e00666def1 to your computer and use it in GitHub Desktop.
Save bjorne/316ddcc266e00666def1 to your computer and use it in GitHub Desktop.
Cycle Safari Windows
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