mi sto scontrando con un problema in Applescript.
Probabilmente è anche stupido ma non riesco a farlo.
In pratica avendo questo
Codice: Seleziona tutto
display dialog "Si o No?" buttons {"Yes", "No"} default button 1 giving up after 5
Quello che vorrei fare è intercettare il valore che restituisce il button Yes
Se faccio così
Codice: Seleziona tutto
set the my_choice to the button returned of the result
if my_choice is "Yes" then
display dialog "Yes"
else if my_choice is "No" then
display dialog "No"
end if
È possibile fare quello che voglio?
Grazie