Keyword Reference

#OnAutoItStartRegister

AutoIt開始時に呼ばれる関数を登録します。

#OnAutoItStartRegister "function"

 

パラメータ

function 呼びだすユーザー関数の名前

 

注意


 

関連

 

Example


#OnAutoItStartRegister "MyTestFunc"
#OnAutoItStartRegister "MyTestFunc2"

Sleep(1000)

Func MyTestFunc()
    MsgBox(64, "Start Results 2", 'Start Message from MyTestFunc()')
EndFunc

Func MyTestFunc2()
    MsgBox(64, "Start Results 3", 'Start Message from MyTestFunc()')
EndFunc