Getting data from non active tabs in windows

Mponthepc

Big Gnobody
Joined
Mar 16, 2006
Messages
96
Reaction score
1
Points
0
This is one of those duhs that I had today but wanted to throw this out there in case anyone else is programming around a wall that isn't there.

All of the information in a window is in memory as long as it's opened, even if the data in the window is hidden behind an active tab. For example the Tribute window, you can get the information from the guild tab or click buttons on the guild tab when the personal tab is active.

/notify TributeBenefitWnd TBWG_ActivateButton leftmouseup

Will turn on guild tribute regardless if the guild tab is hidden or not. Without requiring you to do

/notify TributeBenefitWnd TBW_Subwindows tabselect 2

first.

Ok so ya that's pretty logical when you think about it as to why it would be, but that is if you think about it, which I didn't.