表格填充粘贴然后选项卡重复

时间:2012-11-07 20:43:47

标签: forms tabs applescript copy-paste

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

我需要它粘贴然后标签七次然后重新粘贴..... 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

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

任何帮助?

1 个答案:

答案 0 :(得分: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