我之前从未使用过AppleScript。 这是我第一次进行击键。我不知道这是什么。 我想创建一个命令,将shift + f5,control + v,shift + f5,i,down,v,shift + i,请
答案 0 :(得分:0)
你可能想看看这个漂亮的页面(http://eastmanreference.com/complete-list-of-applescript-key-codes/)来开始自己。
它类似于下面的代码。您可能需要先考虑激活您的应用,并在密码之间加以延迟以防万一。
tell application "System Events"
key code 96 using {shift down}
key code 9 using {control down}
key code 96 using {shift down}
key code 34
key code 125
key code 9
key code 34 using {shift down}
end tell