Inrego
New Member
- Joined
- Feb 7, 2010
- Messages
- 2,765
- Reaction score
- 71
Hey I'm fiddling around with getting HB to click a button of an AddOn. It's some auctioning addon where I need it to press the button to post the auction. The AddOn dev has given some macros to press said button, but when I have HB click it, the button just turns grey and nothing more happens. If I click the macro manually, there are no problems.
I've tried
I've also tried making a macro with /click ButtonName and then doing
I've even tried running the buttons action directly through HB with the lua, and still, the button just turns grey.
Any ideas how to make it work?
I've tried
Code:
Lua.DoString(string.Format("RunMacroText(\"{0}\")", "/click ButtonName"), 0);
Code:
Lua.DoString("RunMacro('post')");
Any ideas how to make it work?