GSE: Sequences, Variables, Macros

GSE: Sequences, Variables, Macros

6M Downloads

[BUG]

WiNiFiX opened this issue Β· 2 comments

commented

πŸ”΅ Describe the bug:
A clear and concise description of what the bug is.

when macros are created its creating them with a random "t" causing them to not work properly

This is correct:
#showtooltip
/click [button:1] EA_ENHAS_OB LeftButton; [button:2] EA_ENHAS_OB RightButton; [button:3] EA_ENHAS_OB MiddleButton; [button:4] EA_ENHAS_OB Button4; [button:5] EA_ENHAS_OB Button5; EA_ENHAS_OB

This is what is created: (Why the random "t" ?)
#showtooltip
/click [button:1] EA_ENHAS_OB LeftButton t; [button:2] EA_ENHAS_OB RightButton t; [button:3] EA_ENHAS_OB MiddleButton t; [button:4] EA_ENHAS_OB Button4 t; [button:5] EA_ENHAS_OB Button5 t; EA_ENHAS_OB

commented

This actually isn’t a bug. It is required for KeyDown mode instead of KeyUp mode. Full detail is located at https://github.com/TimothyLuke/GSE-Advanced-Macro-Compiler/wiki/ActionButtonKeyDown-or-ActionButtonKeyUp-and-Why-this-matters---Macro-Cycling-not-firing

The β€œt” is an abbreviation for true.

The exception is if you are using Classic then set GSE to KeyUp mode on the troubleshooting tab.

commented

thanks.