View Single Post
Unread 02-17-12, 12:27 AM   #4
sidsixseven
Bomani Harbinger
Join Date: Feb 2012
Posts: 6
Quote:
Originally Posted by TimeBomb View Post
We do not have access to the default UI. We DO have access to hooks that allow us to work with or imitate the [functionality of the] default UI, though. We do not have access to everything yet, as the API is still very much so incomplete and in beta.
Hmm. Is there any quick and dirty way to figure out the name of a Frame, text label or other objects? Something like the WoW equivalent of: GetMouseFocus():GetName()

Or alternately, a way to dump all the objects? My preference would be to make modifications (or replace) the existing UI objects.

EDIT: OK -- at least the dumping is no problem. It appears everything is under UI.Native .. A mousefocus would make things easier but I can work with this..
Code:
for k,v in pairs(UI.Native) do
	print(k)
end

Last edited by sidsixseven : 02-17-12 at 12:48 AM.
sidsixseven is offline   Reply With Quote