Applescript:将命令中的键码和击键混合到系统事件中

时间:2018-06-07 11:07:04

标签: applescript

我正在从输入源读取击键和键码,并希望使用此输入来模拟键盘输入。

例如,我可能会收到输入"向下发送30页然后发送10''"

  1. 我想从这个输入中设置两个变量,key和重复次数。如何将键设置为键码119(向下翻页)?这是我尝试过没有成功的:
  2. set theKey to key code 119 - > A identifier can’t go after this property.

    set theKey to (key code 119) - > Expected “,” but found identifier.

    1. 在下一步中,我想做一些像
    2. 这样的事情

      tell application "System Events" to keystroke "a"

      tell application "System Events" to key code 119

      如下所示:

      tell application "System Events" to send theKey to application "Text Edit"

      但如果事先我不知道是keystroke还是key code我想发送给系统事件,该怎么办?

0 个答案:

没有答案