Jump to content

Recommended Posts

Posted

How do I make my own autoit functions take optional arguments? Haven't been able to figure this out yet.

  • Developers
Posted

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

Posted

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!! :lmao:

[u]Do more with pre-existing apps![/u]ANYGUIv2.8

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
  • Recently Browsing   0 members

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