View Single Post
10-22-10, 04:52 AM   #125
yj589794
A Rage Talon Dragon Guard
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 314
Originally Posted by lurelure View Post
The eclipsebar seems to force visibility (on form changes etc), meaning I can't control its visibility once its spawned.
The eclipsebar element uses the same visibility settings as the default blizzard element. The element will be shown if you are in balance spec and in caster or chicken forms, any other combination of form/spec will hide the element.

If you want different behaviour then add your own PostUpdateVisibility function:

Code:
self.EclipseBar.PostUpdateVisibility = function(element, unit)
	-- put visibility code here
end
  Reply With Quote