Tagged Questions
2
votes
1answer
389 views
Activating Mountain Lion screen saver from Applescript, part 2
This example was shown earlier:
tell application "System Events"
set ss to screen saver "Random"
start ss
end tell
Is there an incantation instead of "Random" to display a slideshow from ...
4
votes
2answers
2k views
Activating screen saver from AppleScript in Mountain Lion
I had a script that I used to use to activate my screen saver, and it no longer works in Mountain Lion.
It was a shell script that called an AppleScript script:
#!/bin/bash
osascript ...
0
votes
0answers
24 views
Launch program after inactivity [duplicate]
Possible Duplicate:
How can I automatically launch an application whenever the Mac goes idle?
I'd like to launch an AppleScript/ App after 30 minutes of system inactivity. e.g. no cursor ...