AppleScript可以快速键入闪存

时间:2014-08-26 09:51:26

标签: applescript

这适用于桌面应用程序和基于html的网站中的输入字段:

tell application "System Events" to keystroke "HelloWorld"

但是,在我们的Flash应用程序(在Chrome中运行)中,按键速度似乎太快了。在输入字段中,它只输入“eol”。

人们在使用flash之前是否遇到过此行为?

是否有一些很好的解决方法,或者我是否必须将单词拆分为字符并将每个字符分开(每个字符之间有可选的延迟)?

1 个答案:

答案 0 :(得分:2)

尝试:

set myText to "HelloWorld"
set myChar to characters of myText
set myDelay to 0.5

tell application "System Events"
    repeat with aChar in myChar
        keystroke aChar
        delay myDelay
    end repeat
end tell