2

我正在尝试使用 applescript 编写一些数据输入的脚本。

我需要它粘贴,然后 Tab 七次,然后再次粘贴..... 2700 次。

虽然我对编程很陌生,但我至少能够得到一些工作。

到目前为止我所拥有的:

set the clipboard to "blah"
tell application "blah"
    activate
    tell application "System Events"
        repeat 4 times
            keystroke "v" using {command down}
            keystroke "                         "
        end repeat
    end tell
end tell

现在这将粘贴到第一个表单中,然后跳过一个并粘贴到下一个表单中。我不知道为什么。所以这只是粘贴到其他所有形式中。

有什么帮助吗?

4

1 回答 1

0

尝试:

set the clipboard to "blah"
tell application "blah"
    activate
    tell application "System Events"
        repeat 4 times
            keystroke "v" using {command down}
            delay 1
            repeat 7 times
                keystroke tab
                delay 1
            end repeat
        end repeat
    end tell
end tell
于 2012-11-07T21:15:38.030 回答