原创:Mac AppleScript 自动登录两个QQ

Posted 十一岁的加重

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原创:Mac AppleScript 自动登录两个QQ相关的知识,希望对你有一定的参考价值。

前提,已有登录过的账号,且没有设置为自动登录

 

tell application "QQ"

activate

tell application "System Events"

tell application process "QQ"

activate

set frontmost to true

key code {48, 51}

keystroke "QQ1号码"

delay 1

keystroke return

delay 1

keystroke "QQ1密码"

keystroke return

delay 1

delay 1

keystroke "n" using command down

delay 1

key code {48, 51}

keystroke "QQ2号码"

delay 1

keystroke return

delay 1

keystroke "QQ2密码"

delay 1

keystroke return

delay 1

end tell

end tell

end tell

 

以上是关于原创:Mac AppleScript 自动登录两个QQ的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 AppleScript 登录远程 Mac?

AppleScript

Mac App Rejection - Safari 的临时例外授权密钥

AppleScript脚本学习记录《二》

是否可以通过 Applescript 访问 Spotify Mac 应用程序中当前播放歌曲的歌曲名称?

如何制作Mac终端弹出/警报? AppleScript的?