Goto

指定したラベルの位置に処理をジャンプする

Goto, Label

Parameters

引数名説明
Label ラベル名。ホットキーラベルやホットストリングラベルでも可能。

Remarks

Gotoはスクリプトがややこしくなる原因となりがちなので、あまり推奨されない。

Related

Gosub, Return, Else, Blocks, Break, Continue

Example(s)

Goto, MyLabel
...
MyLabel:
Sleep, 100 
...