我正在尝试使用AppleScript创建一个应用程序,它可以提醒我检查我的邮件,如果我忘了检查,请关机。
我从这个链接中获得了帮助:http://discussions.apple.com/thread.jspa?threadID=1375949&tstart=0&messageID=7088687#7088687
在这个链接中,他们建议我可以运行一个可以在登录时启动的应用程序,当我尝试关闭时,系统会尝试关闭它,并获得所需的结果!
我试过这个脚本代码:
say "Good morning Miraaj! I will be reminding you to check your mails at shutdown. Have a rocking day!!"
退出
set the alert_message to "Have you checked your mails?"
display dialog the alert_message buttons {"Yes", "No"} default button 1
set the my_choice to the button returned of the result
if my_choice is "Yes" then
tell application "Finder"
shut down
end tell
else
tell application "Safari"
open location "www.gmail.com"
end tell
end if
continue quit
结束退出
但它不适合我!
任何人都可以建议我可能出错的地方吗?
谢谢,
Miraaj
答案 0 :(得分:0)
现在我正在保存它作为保持打开的应用程序! :)