1

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

IfInString, Clipboard, Stop
  Break

在此之后我将如何发出命令?在正文之后添加文本不起作用。我对自动热键很陌生。

4

1 回答 1

2

当 aLoop和 aBreak被命中时,代码执行将直接转到循环之外的代码。

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
于 2013-08-21T12:51:37.980 回答