View Single Post
01-28-10, 04:56 PM   #169
Tandurin
A Fallenroot Satyr
Join Date: Apr 2009
Posts: 25
Hehe sry to bust in again

I wrote a new code after my hard-drive crashed. Though again it doesn't show up =S.

I thought I did everything right this time...

here's the code

Code:
lpanels:CreateLayout("Chat", {
	-- Main Chat Background
	{	name = "Chat",
		strata = "BACKGROUND", level = 0,
		x_off = 0, y_off = "1%",
		width = "20%", height = 125,
		bg_color = "1 1 1", bg_alpha = 0.5,
		anchor_to = "BOTTOMLEFT",
		border_size = 1, Border_color = "1 1 1",
	},
}),

lpanels:CreateLayout("Combat", {
	-- Main Chat Background
	{	name = "Combat",
		strata = "BACKGROUND", level = 0,
		x_off = 0, y_off = "-1%",
		width = "20%", height = 125,
		bg_color = "1 1 1", bg_alpha = 0.5,
		anchor_to = "BOTTOMRIGHT",
		border_size = 1, Border_color = "1 1 1",
	},
}),

lpanels:CreateLayout("Hotbar", {
	-- Main Chat Background
	{	name = "Hotbar",
		strata = "BACKGROUND", level = 0,
		x_off = 0, y_off = "1%",
		width = "55%", height = 55,
		bg_color = "1 1 1", bg_alpha = 0.5,
		anchor_to = "BOTTOM",
		border_size = 1, Border_color = "1 1 1",
	},
}), lpanels:ApplyLayout(nil, "Chat", "Combat", "Hotbar");
  Reply With Quote