Jump to content

AdLibEnable & HotKeySet


Recommended Posts

Hi all, I'm new here... Firstly I inform you that my mothertongue isn't English; so, please, excuse me for the errors...:)

Well, I just want to ask you if it's possible using AdLibEnable (or HotKeySet) calling a function with parameters...

Thanks, JamesBond

Link to comment
Share on other sites

You would need to do it like so:

HotKeySet("{F1}", "MsgWithParam")

While 1
Sleep(100)
WEnd

Func Msg($param)
MsgBox(0, "", $param)
EndFunc

Func MsgWithParam()
Msg("Hello world, I was called with Param!")
EndFunc

Same applies with AdLib

Woops, added extra ".

Edited by JamesB
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...