Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » User Interface and AddOns

Reply
 
LinkBack Thread Tools
Old 06/18/08, 10:21 AM   #1
Dibbler
Von Kaiser
 
Tauren Hunter
 
Dalvengyr
Bongos3 and Key ID

I have looked around quite a bit (Wowiki, Curse, EJ forums) and have not been able to find an answer yet.


Does anyone know how to find a KEY ID with Bongos3 enabled? If Bongos3 does not support that functionality could someone recommend a mod which will ID the KEY.

Ultimately I am trying to make a /click macro.


Thanks all.

Offline
Reply With Quote
Old 06/18/08, 10:32 AM   #2
koaschten
In the rear with the gear!
 
koaschten's Avatar
 
Worgen Rogue
 
Auchindoun (EU)
I usually abuse this macro to figure out stuff like that:

/script DEFAULT_CHAT_FRAME:AddMessage("You are hovering over frame: " .. GetMouseFocus():GetName())

Generally the Frame Name should correspond with the button id (i know it does for BT3) and can then be used with /click macros.

edit: *cough* mixing up the order of CHAT and DEFAULT is not good ...

Last edited by koaschten : 06/19/08 at 9:26 AM. Reason: typo correction in code section

How to get an Android Authenticator on your PC. (updated feb'11)

Germany Offline
Reply With Quote
Old 06/18/08, 11:05 AM   #3
Dibbler
Von Kaiser
 
Tauren Hunter
 
Dalvengyr
I have been attempting to use:

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

However, I have never seen any feedback in the chat window. I'll see if your macro will work - TYVM

Offline
Reply With Quote
Old 06/18/08, 11:47 AM   #4
dRiN
Glass Joe
 
Night Elf Warrior
 
Aggramar (EU)
Originally Posted by Dibbler View Post
I have been attempting to use:

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

However, I have never seen any feedback in the chat window. I'll see if your macro will work - TYVM
DEFAULT_CHAT_FRAME: AddMessage
I see a space there. I believe there should not be. I have made a click macro for bongos3 this weekend, and found that the AddMessage function had some changes in 2.4.2. so maybe that is why this wasn't working for you. Wowwiki showed me a working way to add text to the default chat window. In combination with the above that should work.

Too Bad I can't remember what the default nameschema is.

Offline
Reply With Quote
Old 06/18/08, 3:20 PM   #5
Dibbler
Von Kaiser
 
Tauren Hunter
 
Dalvengyr
I have tried to fix my command line (remove space) and your suggested line but get ZERO response in chat window. What am I missing?

Offline
Reply With Quote
Old 06/18/08, 4:06 PM   #6
Borona
Von Kaiser
 
Dwarf Warrior
 
Blackrock (EU)
This one works like a charm for me.

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

Last edited by Borona : 06/18/08 at 4:06 PM. Reason: typo

Offline
Reply With Quote
Old 06/18/08, 5:53 PM   #7
koaschten
In the rear with the gear!
 
koaschten's Avatar
 
Worgen Rogue
 
Auchindoun (EU)
You need to Mouse Over the Button in question.

How to get an Android Authenticator on your PC. (updated feb'11)

Germany Offline
Reply With Quote
Old 06/23/08, 7:42 AM   #8
Tanoh
Piston Honda
 
Tanoh's Avatar
 
Undead Mage
 
Earthen Ring (EU)
My take:

/script local olle = GetMouseFocus(); DEFAULT_CHAT_FRAME:AddMessage("===> Start <==="); while( olle ~= nil ) do DEFAULT_CHAT_FRAME:AddMessage(olle:GetName()); olle = olle:GetParent(); end;
Shows the stack of frames all the way up (or down depending on how you look at it) to UIParent. :>

Offline
Reply With Quote
Old 07/25/08, 8:56 PM   #9
Lendilsson
Glass Joe
 
Night Elf Hunter
 
Earthen Ring
Bongos3 and Druid setup

I've got a weird issue. I try setting up Bongos3 for my druid and it seems to set up correctly, but all of my icons are doubled. I have two of each showing up.

Any suggestions?

Offline
Reply With Quote