You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- This script requires the Home app to be installed and your Apple TV is connected-- You may want to update the name of the Apple TV belowtry tell application "Home" activate tell application "System Events" tell process "Home" set failsafe to 0 repeat until exists of (first button of scroll area 1 of group 1 of window 1 whose description is "Apple TV, Living Room") delay 0.2 set failsafe to failsafe + 1 if failsafe = 100 then error "Script timeout, Apple TV button not found" end repeat set b to first button of scroll area 1 of group 1 of window 1 whose description is "Apple TV, Living Room" set v to value of b repeat until value of b ≠ v click b delay 0.2 end repeat end tell end tell quit end tellon error errMsg number errNum display dialog errMsg & return & return & errNum buttons {"Cancel", "OK"} default button "OK"end try