Created
July 23, 2018 23:39
-
-
Save kosho/7dcdbc04d25b92f3aa2363e13cdec471 to your computer and use it in GitHub Desktop.
This file contains 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
# via http://apple.stackexchange.com/questions/39430/automatically-scan-cycle-through-safari-tabs | |
tell application "Safari" | |
repeat | |
repeat with i from (count of tabs of window 1) to 1 by -1 | |
set current tab of window 1 to tab i of window 1 | |
delay 10 | |
end repeat | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment