Applescript不会在automator中运行

时间:2014-02-27 21:54:06

标签: applescript automator

这是我的代码,除此之外,目前在automator程序中没有别的东西。

on run {input, parameters}

delay 0.5

activate application "Firefox"

set x to 1
set counter to 0

repeat while (counter < x)
    tell application "System Events" to key code 126
    set counter to counter + 1
end repeat

set x to x + 1

return input
end run

我运行时遇到的错误是:

“执行AppleScript”操作遇到错误。
检查操作的属性,然后再次尝试运行工作流程。

1 个答案:

答案 0 :(得分:0)

要么摆脱(未使用/不必要的)参数和返回行,要么完全摆脱运行块。你不需要任何你正在做的事情。以后是否需要“输入”和其他参数是另一个问题。但这只是在FireFox中输入箭头。

activate application "Firefox"

set x to 1
set counter to 0

repeat while (counter < x)
   tell application "System Events" to key code 126
   set counter to counter + 1
end repeat

set x to x + 1