Voglio fare una piccola applicazione che digiterà il numero 1, attendere un intervallo, digitare il numero 2, attendere un intervallo, digitare il numero 3, attendere un intervallo, ecc.
Funziona per digitare più e più volte un numero:
on idle
tell application "System Events"
key code 18
end tell
return 2
end idle
Ma sto cercando di ottenere più del numero per lavorare:
on idle
tell application "System Events"
key code 18
end tell
return 2
tell application "System Events"
key code 19
end tell
return 2
end idle
Questo non funziona. Né questo:
on idle
tell application "System Events"
key code 18
return 2
key code 19
return 2
end tell
end idle
Non so che altro provare. Grazie!