如何在循环中断后添加命令?

时间:2013-08-21 04:07:40

标签: clipboard autohotkey break

我有循环运行,在循环中间我有命令

IfInString, Clipboard, Stop
  Break

之后如何发出命令?在身体不起作用后添加文本。我对autohotkey很新。

1 个答案:

答案 0 :(得分:2)

当遇到LoopBreak时,代码执行将直接转到循环之外的代码。

Loop
{
    IfInString, Clipboard, Stop
        Break
    /*
    Some other stuff could be here,
    but this does not run if the break is hit
    */
}
; Code execution continues here
Msgbox, Stop was found in the clipboard