View Single Post
10-28-10, 04:41 PM   #2
v6o
An Onyxian Warder
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 399
Your frame is shown but it doesn't contain anything, try adding a background and have a look again

Code:
local backdrop = {
 bgFile = "Interface/Tooltips/UI-Tooltip-Background", 
 edgeFile = "Interface/Tooltips/UI-Tooltip-Border", 
 tile = true,
 tileSize = 16,
 edgeSize = 16,
 insets = { left = 4, right = 4, top = 4, bottom = 4 }
}
SK.Frame:SetBackdrop(backdrop)
Also when you register ADDON_LOADED it will also fire for every addon that loads after yours so you might want to unregister it after you're done.

Code:
SK.Frame:UnregisterEvent("ADDON_LOADED")
__________________
I stopped playing back World of Warcraft in 2010 and I have no plans on returning.
This is a dead account and if you want to continue any of my addons or make a fork then feel free to do so.
This is your permission slip.

If you need to contact me, do so on Twitter @v6ooo

Best regards, v6.
  Reply With Quote