Jump to content

Optional arguments in my own functions?


 Share

Recommended Posts

  • Developers

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.
  :)

Link to comment
Share on other sites

http://www.autoitscript.com/autoit3/docs/keywords/Func.htm

For example

Func 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!
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...