View Single Post
04-18-09, 05:51 AM   #993
Din
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 14
Originally Posted by Waverian View Post
Having a peculiar problem I've never run into before... I've got a "ghost" frame where I've anchored my target that always shows up.
I'm new to oUF myself so take someone else's word over mine, but the problem may be you're creating the Health and Power frames without parenting them to the unitframe itself. So when the frame is hidden by oUF, these bars are not because they are not children.

For example when I create my statusbar, I do
Code:
self.Health = CreateFrame("StatusBar", nil, self)
where the third parameter there (self) sets the parent frame.