View Single Post
03-17-09, 10:49 AM   #911
Balkeep
A Cyclonian
 
Balkeep's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 43
1 more noob question...
If i have updateName AND updateHealth in my layout i just call updateName from updateHealth, and then create a link on updateHealth like
self.PostUpdateHealth = updateHealth
But what if i dont have PostUpdateHealth in layout, how should i call updateName then? In some1s layout ive seen something like
self.UNIT_NAME_UPDATE(thats not exact refference =P) = updateName, but it doesnt work for me =(

Also... Back to filters. My Auras code:
Code:
self.Auras = CreateFrame("Frame", nil, self)
self.Auras.initialAnchor = "TOPLEFT"
self.Auras["growth-y"] = "DOWN"
self.Auras:SetHeight(220)
self.Auras:SetWidth(180)
self.Auras.size = 21
self.Auras.spacing = 1
self.Auras.filter = "PLAYER"
self.Auras:SetPoint("TOPLEFT", self, "BOTTOMLEFT", -27, -30)
and i get this as a result:


So its blizzard problem, right?

Last edited by Balkeep : 03-17-09 at 11:22 AM.