Log in

View Full Version : how to know which actionbar im on?



newbox
06-28-2010, 02:57 PM
Once again i could need your help.. :p


I swear i saw a macro once that allowed you to hover pointer over a action bar, press button and it would say the name of it, cant find it sadly.


Im asking cause every now and then i have to rearrange spells and macros and it can take a good while (trial and error) to figure out "which name had skift + 4 f,ex" .. and which keys i have to alter under "key config".

Tried searching, hoping to find a guide like this:

1234567890+ = action bar 1

(Name of mod key) ????????????

(Name of mod key) ????????????

etc

No luck so far.


Thx again :D :D

Poyzon
06-28-2010, 03:12 PM
Put your mouse over something and then run this macro. It will tell you the internal name of the object your mouse is over.


/run local f = GetMouseFocus(); if f then DEFAULT_CHAT_FRAME:AddMessage(f:GetName()) end

I don't have the macro command to get what keys are bound to that object. Take the name you got from above and look through your Key Bindings dialog in the WoW system menu.

olsondw
06-28-2010, 10:34 PM
Create a macro and place the macro in the button you want the name of. When you press the button, the name will show up in the chat window.

/run print(GetMouseFocus():GetName())