View Single Post
05-08-10, 02:36 PM   #192
Zephon
A Kobold Labourer
Join Date: May 2010
Posts: 1
Hey!

Wanted to just start off by thanking you for the awesome addon :3

And since im not to pro at lua, I just wanted to ask a few fairly simple questions.

When I make a box of some sort, anywhere, how to I create borders on the right and left sides of the box?
And also, how do I make one of the boxes sit on top of another boxes border, without the other border showing in one of the boxes?

LPanels = {
["Default"] = {

{ name = "BottomBar",
anchor_to = "BOTTOM",
y_off = 0,
width = "100%",
height = 35,
bg_color = {0,0,0},
bg_alpha = 1,
},


{ name = "BorderLineTop",
parent = "BottomBar",
anchor_to = "TOP",
x_off = 0,
width = 2000,
height = 2,
bg_color = "CLASS",
bg_alpha = 1,
},

{ name = "ActionBars",
anchor_to = "BOTTOM",
y_off = 20,
width = 815,
height= 35,
bg_color = {0,0,0},
bg_alpha = 1,
},

{ name = "ActionBarBorderLineBottom",
parent = "ActionBars",
anchor_to = "BOTTOM",
x_off = 0,
width = "100%",
height = 2,
bg_color = "CLASS",
bg_alpha = 1,
},
That's the current code im using

/Thanks alot!
  Reply With Quote