2013-08-21 42 views

回答

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 
+0

你已经讲述了所有事情!这是对的。 – bgmCoder