Posts: 26
Threads: 7
Joined: Jul 2018
Hi,
I think the title explains things pretty well... I'm just looking to compile all my macros into a single .exe instead of having multiple .exe programs to have running. If this isn't possible, can someone tell me how to put the triggers into the macro so I can merge all of my macros into one?
Thanks!
Posts: 12,092
Threads: 142
Joined: Dec 2002
Triggers in exe are not supported.
An exe can contain 1 macro and multiple functions. You can convert macros to functions (Properties /Macro properties /Convert to function).
Posts: 26
Threads: 7
Joined: Jul 2018
01-27-2019, 03:41 AM
(This post was last modified: 01-27-2019, 03:55 AM by arig.)
Oh, thanks so much!
Wait... so how would I be able to trigger my macros using functions? Because right now I have it set so that buttons on my mouse trigger the macros.
Posts: 12,092
Threads: 142
Joined: Dec 2002
Quick Macros cannot create .exe files containing triggers.
To intercept keyboard or mouse events, need some programming. Use low level hooks. For hotkeys can instead use class __RegisterHotKey.
Posts: 26
Threads: 7
Joined: Jul 2018
Hmm... alright. Is there anyway to make it work with keyboard detector? I might need to just switch programming languages if it's not possible with the Quick Macros programming language.
Posts: 12,092
Threads: 142
Joined: Dec 2002
Keyboard detector in exe - no.