蛙の井戸見聞記 Pretty frog in a well who knows nothing of the great web ocean!

~~ 好奇心は猫をも殺す Curiosity Kills the Cat ~~ ♪欲しいモノ・食べたいモノ・ネットで集めた情報と日々の記録の倉庫♪ Logging my life... Since 2003.12  

アップルスクリプトCocoaで、何らかの処理をするのに、OK Cancelボタンのアラートなどで、確認を迫りたいとき、例えば、

 display dialog "Do you really want to quit without saving datas?" buttons {"OK", "Save", "Cancel"}
 if button returned of result is "OK" then
   doOK()
 else if button returned of result is "Save" then
   doSave()
 else if button returned of result is "Cancel" then
   doCancel()
 end if

などとするのが簡単。