Contenidos
If
1 2 3 4 |
set valor to 1 if valor = 1 then display dialog "Valor es 1" buttons {"OK"} default button 1 end if |
If-else
1 2 3 4 5 6 |
set valor to 2 if valor = 1 then display dialog "Valor es 1" buttons {"OK"} default button 1 else display dialog "Valor no es 1" buttons {"OK"} default button 1 end if |
If-else if-else
1 2 3 4 5 6 7 8 |
set valor to 2 if valor = 1 then display dialog "Valor es 1" buttons {"OK"} default button 1 else if valor = 2 then display dialog "Valor es 2" buttons {"OK"} default button 1 else display dialog "Valor no es 1 o 2" buttons {"OK"} default button 1 end if |