AutoHotKey(오토핫키) 설명서 Return

Posted by 발전소장
2014. 8. 14. 13:56 AutoHotKey/Commands

Return

Gosub(이)나Hotkey의 써브루틴 처리로부터 돌아온다

Return

Remarks

GoSub그리고 점프 하고 있지 않을 때에Return(을)를 실행하면,Exit(을)를 실행했을 때와 같게스렛드(을)를 종료한다.

Related

Gosub, Exit, ExitApp, GroupActivate

Example(s)

#z::
MsgBox, The Win-Z hotkey was pressed.
Gosub, WinZ

return

WinZ: 
Sleep, 1000
return