Fur Posted March 4, 2005 Posted March 4, 2005 How do I make my own autoit functions take optional arguments? Haven't been able to figure this out yet.
Developers Jos Posted March 4, 2005 Developers Posted March 4, 2005 How do I make my own autoit functions take optional arguments? Haven't been able to figure this out yet.<{POST_SNAPBACK}>example where $b is optional:MsgBox(0,'test1',MyFunc(1)) MsgBox(0,'test2',MyFunc(1,1)) ; Func MyFunc($a, $b=0) return $a - $b EndFunc ;==>MyExit SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
CyberSlug Posted March 4, 2005 Posted March 4, 2005 http://www.autoitscript.com/autoit3/docs/keywords/Func.htmFor exampleFunc foo($x, $y = "", $z = 0) ; do stuff here If @NumParams = 1 Then MsgBox(4096,"","You entered one param") MsgBox(4096,"Results", $x & $y & $z) Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
quaizywabbit Posted March 4, 2005 Posted March 4, 2005 Aaaaah! coolness! That help file doesn't show an example of user function optional parameters, hopefully it'll get updated with the next release. Thanks again!! [u]Do more with pre-existing apps![/u]ANYGUIv2.8
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