Semplice auto-typer con AppleScript

7

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!

    
posta bookcasey 21.04.2012 - 01:15
fonte

1 risposta

9

Prova a usare delay 2 invece di return 2 - return esce dal ciclo!

    
risposta data 21.04.2012 - 01:17
fonte

Leggi altre domande sui tag