0

在使用 Thunderbird 和 Flashgot 扩展时,我想一次下载 10 条消息中的所有附件。顺序是ctrl-F3,输入,删除,重复。我需要 5 秒的暂停来允许加载消息和下载附件。我当前的 Autokey 脚本不起作用,并且需要“pkill autokey”才能锁定。这是我到目前为止,作为脚本加载的内容:

;Download Attachments from 10 messages and quit
Loop 10
{
  keyboard.send_key("{ctrl}{f3}")
  keyboard.send_key("{enter}")
  sleep, 5000  
  keyboard.send_key("{delete}")
  sleep, 5000
}
4

1 回答 1

0

尝试

{
  keyboard.send_key("<ctrl><f3>")
  keyboard.send_key("<enter>")
  sleep, 5000  
  keyboard.send_key("<delete>")
  sleep, 5000
}
于 2018-07-24T18:19:46.153 回答