2

我正在尝试使用 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

结束退出

但这对我不起作用!

谁能建议我可能错在哪里?

谢谢,

米拉杰

4

1 回答 1

0

当我将它保存为保持打开应用程序时,它现在正在工作!:)

于 2010-06-09T14:26:14.597 回答