Thread: Joining Party
View Single Post
12-12-09, 06:19 PM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
Do you remember what role you selected for yourself and what role it attributed to you if that was different somehow ?

Well the block of code that relates to is as follows :

Code:
			for i=1,numHidden do
				
				texture = hidden[i];
				
				if texture.active then
					
					texture.active = false;
					texture:ClearAllPoints();
					texture:SetAlpha( 0 );
					
				end
			end
Possibly hidden[i] is empty and thus perhaps a test for texture before accessing sub elements just in case. The question is though whether there should be a value regardless or whether there are chances there won't be a value.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 12-12-09 at 06:25 PM.