我有循环运行,在循环中间我有命令
IfInString, Clipboard, Stop
Break
之后如何发出命令?在身体不起作用后添加文本。我对autohotkey很新。
答案 0 :(得分:2)
当遇到Loop
和Break
时,代码执行将直接转到循环之外的代码。
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