Keyword Reference

首页  后退  前进

#OnAutoItStartRegister

注册 AutoIt 启动时调用的函数.

 

#OnAutoItStartRegister "函数"

参数

函数

用户函数名称.

备注

函数不能引用任何定义在 #include 中的变量.

相关

OnAutoItExitRegister

函数示例

; Register Example() and SomeFunc() to be called when AutoIt starts.
#OnAutoItStartRegister "Example"
#OnAutoItStartRegister "SomeFunc"
Sleep(1000)
Func Example()
    MsgBox(4096, "", "Function 'Example' is called first.")
EndFunc   ;==>Example
Func SomeFunc()
    MsgBox(4096, "", "Function 'SomeFunc' is called second.")
EndFunc   ;==>SomeFunc

----------------------------------------