View Single Post
05-19-13, 12:38 PM   #356
gmarco
An Onyxian Warder
 
gmarco's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 362
Solved, thanks to other answer in this forum in this way:

Lua Code:
  1. lpanels:CreateLayout("Back2", {
  2.     {   name = "P1", anchor_to = "BOTTOM", x_off = 0, y_off = 4,
  3.         bg_alpha = 1, width = 460, height = 122,
  4.         border = "SOLID", border_color = "CLASS",
  5.     },
  6.    
  7.     {   name = "P2", parent = "BT4Bar10",
  8.         anchor_to="BOTTOMLEFT", anchor_from="BOTTOMRIGHT", anchor_frame = "P1",
  9.         x_off = 2, y_off = 0,
  10.         bg_alpha = 1, width = 115, height = 122,
  11.         border = "SOLID", border_color = "CLASS",
  12.     },
  13.  
  14.     {   name = "P3", parent = "BT4Bar9",
  15.         anchor_to="BOTTOMRIGHT", anchor_from="BOTTOMLEFT", anchor_frame = "P1",
  16.         x_off = -2, y_off = 0,
  17.         bg_alpha = 1, width = 115, height = 122,
  18.         border = "SOLID", border_color = "CLASS",
  19.     },
  20.    
  21. } )

Without parenting with BT4 bars I think it is impossible.
__________________
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
  Reply With Quote