下記のサンプルでは、”Windows” “Mac” “Cancel” の3つのボタンを表示し、押したボタンによって異なるメッセージを表示します。
#!/usr/bin/env osascript
display dialog "Select your OS" buttons {"Mac", "Windows", "Cancel"} default button 3 with icon note
copy the result as list to {ret}
if the ret is "Windows" then
display dialog "You are using Windows!"
else if the ret is "Mac" then
display dialog "You are using Mac!"
end if