View Single Post
12-19-10, 04:05 AM   #291
Creatan
A Murloc Raider
Join Date: May 2009
Posts: 5
I'm having problems with textures. The layout that I create works fine and shows up as expected when I don't have the texture file declaration in there, but when I do the panel isn't created.
Code:
lpanels:CreateLayout("Load For All", {
	-- Create a global layout right here
	--Chat frame
	{
		name = "ChatBox", parent = "UIParent",
		anchor_to = "BOTTOMLEFT", anchor_from = "BOTTOMLEFT",
		x_off = 3, y_off = 28,
		width = 375, height = 170,
		bg_color= "0 0 0", bg_alpha = 0.5,
		tex_file = "Interface\\Addons\\LitePanels\\media\\texture.tga"
	},	
})
  Reply With Quote