Return to Snippet

Revision: 17909
at September 16, 2009 17:00 by hashibuto


Updated Code
tell application "***App name***"
    activate
end tell
tell application "System Events"
    -- #102 is NFER key in JIS keyboard. This line is necessary for Japanese user only.
    key code 102
    keystroke "***Your ID***"
    keystroke tab
    keystroke "***Your PW***"
    keystroke return
end tell

Revision: 17908
at September 16, 2009 15:59 by hashibuto


Initial Code
tell application "Beak"
    activate
end tell
tell application "System Events"
    -- #102 is NFER key in JIS keyboard. This line is necessary for Japanese user.
    key code 102
    keystroke "***Your ID***"
    keystroke tab
    keystroke "***Your PW***"
    keystroke return
end tell

Initial URL


Initial Description
Please fill application name, username and password.

Initial Title
OSX application auto login.

Initial Tags
osx

Initial Language
AppleScript