TheOrignl Posted September 22, 2007 Posted September 22, 2007 The AutoiIt intrepreter gives me an "Unknown function name" for the following function call: GUICtrlSetOnEvent($GUI_Id, "function($argument)") given the follow defined function: Func function($param) MsgBox(0, "", "Param equals: " & $param) EndFunc Can someone help me understand why this is not an acceptable practice or have I just missed some formatting detail? Managing the complexities of our daily lives is always our own responsibility; Allowing God to help us and accepting His guidance is our choice. The best choice!
GaryFrost Posted September 22, 2007 Posted September 22, 2007 (edited) The AutoiIt intrepreter gives me an "Unknown function name" for the following function call: GUICtrlSetOnEvent($GUI_Id, "function($argument)") given the follow defined function: Func function($param) MsgBox(0, "", "Param equals: " & $param) EndFunc Can someone help me understand why this is not an acceptable practice or have I just missed some formatting detail? When you use GUICtrlSetOnEvent only use the function name as it shows in the help. GUICtrlSetOnEvent ( controlID, "function" ) Edited September 22, 2007 by GaryFrost SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
TheOrignl Posted September 23, 2007 Author Posted September 23, 2007 When you use GUICtrlSetOnEvent only use the function name as it shows in the help. GUICtrlSetOnEvent ( controlID, "function" ) Thanks. Is there any way to provide the called function with parameters to work with or do I have to use Global scope for the variable(s) to be used within the function? Managing the complexities of our daily lives is always our own responsibility; Allowing God to help us and accepting His guidance is our choice. The best choice!
GaryFrost Posted September 23, 2007 Posted September 23, 2007 Thanks. Is there any way to provide the called function with parameters to work with or do I have to use Global scope for the variable(s) to be used within the function?Either that or use GuiGetMsg and in the switch or select case you can call functions with params. SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
martin Posted September 24, 2007 Posted September 24, 2007 Thanks. Is there any way to provide the called function with parameters to work with or do I have to use Global scope for the variable(s) to be used within the function?Depends what parameters you want. You can have a function called with parameters from an onevent function like thisGUISetOnEvent($GUI_EVENT_CLOSE, "SomeFn")Func SomeFn() $par1 = blahblah $par2 = .... anotherfunction($par1,$par2)endfunc Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now