What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Development] Hardware Event

Smarter

Member
Joined
Jan 15, 2010
Messages
763
Reaction score
9
I have been stumped on this issue for awhile. I need to click a button, but require a Hardware Event. Using ResetAfk() works SOMETIMES but not all the time. Is there something I'm missing?
 
Styx.Helpers.KeyboardManager.PostMessage(uint msg, uint wParam, uint lParam)
 
That has been functioning okay, sending a KeyPress, but I need a way to send a Right Click to the Batch Post button of Auctioneer :-\. Not finding a way to do it.
 
That has been functioning okay, sending a KeyPress, but I need a way to send a Right Click to the Batch Post button of Auctioneer :-\. Not finding a way to do it.

Inject Lua. <frame name>:Click()
 
That has been functioning okay, sending a KeyPress, but I need a way to send a Right Click to the Batch Post button of Auctioneer :-\. Not finding a way to do it.
if you Find MaiN's method too difficult then you can always do right mouse clicks from macros. /click [button:3] buttonname
 
if you Find MaiN's method too difficult then you can always do right mouse clicks from macros. /click [button:3] buttonname

Auctioneer defines the button locally, otherwise I would have already done that, not to mention that the AH requires Hardware Events.....
 
/run local f = GetMouseFocus(); if f then DEFAULT_CHAT_FRAME:AddMessage(f:GetName()) end

Make that into a macro, put your mouse over the button, and it will give you the name of the element. use that in your /click macro.
 
Back
Top