Applescript按键不能在BBEdit中工作

时间:2014-05-02 18:53:24

标签: applescript bbedit

tell application "BBEdit"
    activate
    tell window 1
        repeat 100 times
            repeat 5 times
                key code 124
            end repeat
            --select insertion point after character 5
            keystroke return
            --keystroke key code 36
        end repeat
    end tell
end tell

给出错误

error "BBEdit got an error: Can’t get keystroke \"
\" of window 1." number -1728 from keystroke "
" of window 1

我想做的就是模拟移动光标5个空格并按回车键很多很多时间。

看似简单......

1 个答案:

答案 0 :(得分:2)

delay 0.2
tell application "BBEdit"
    activate
    tell window 1
        repeat 100 times
            repeat 5 times
                tell application "System Events"
                    key code 124
                end tell
            end repeat
            tell application "System Events"
                keystroke return
            end tell
        end repeat
    end tell
end tell