Continue

ループの現在の回の残りの処理をスキップし、次の回に進む。

Continue 

Remarks

一番内側のループの残りの処理をスキップして次の回に進む。

Related

Loop, Break, Blocks

Example(s)

; This example displays 5 MsgBoxes, one for each number between 6 and 10.
; Note that in the first 20 iterations of the Loop, the "continue" command
; causes the loop to start over before it reaches the MsgBox line.
Loop, 10
{
	if A_Index <= 5
		continue
	MsgBox, %A_Index%
}