Esegui automaticamente un'app UI e fai clic su un pulsante all'avvio

0

Voglio fare due cose all'avvio del mio Mac:

1) Run an app
2) Click a button on that app

Qualche suggerimento su come posso farlo? FWIW, questa è l'app che non ho scritto quindi non posso modificare la sorgente o passare i parametri della riga di comando.

    
posta psychotik 07.12.2012 - 19:32
fonte

1 risposta

1

Salva uno script come ~/Library/Scripts/test.scpt in AppleScript Editor:

tell application "Grapher"
    activate
    reopen
end tell
tell application "System Events" to tell process "Grapher"
    click radio button 2 of tab group 1 of window 1
    -- UI elements of window 1
end tell

Salva come ~ / Libreria / LaunchAgents / test.plist:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
http://www.apple.com/DTDs/PropertyList-1.0.dtd>
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>test</string>
    <key>ProgramArguments</key>
    <array>
        <string>osascript</string>
        <string>/Users/username/Library/Scripts/test.scpt</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
</dict>
</plist>

Ulteriori informazioni su scripting dell'interfaccia utente e launchd:

risposta data 07.12.2012 - 23:11
fonte

Leggi altre domande sui tag