有没有办法检查屏幕保护程序是否正在使用AppleScript运行?
目前我正在使用以下AppleScript启动屏幕保护程序:
tell application "System Events"
start current screen saver
end tell
我发现了这个script,但我不知道这是否正确或如何将其写入我的脚本。
我想要的是这样的:
tell application "System Events"
if screen saver is not activated then
start current screen saver
end if
end tell
答案 0 :(得分:0)
试试这个......
tell application "System Events"
if not (running of screen saver preferences) then start current screen saver
end tell