Thread Tools Display Modes
01-11-12, 06:54 AM   #1
Detritis
A Black Drake
AddOn Author - Click to view addons
Join Date: Aug 2005
Posts: 87
Moving Action Bars

Hi Scott,

I am trying to move the bottom left and bottom right action bar via the /nui movers command.

I am able to move both of the bars however my problem lies in that the player/party button and the infopanel button are actually docked to these bars and move with them.

Where in the code can I find where these buttons are attached to the bars so I can modify it to not move when I move the bars.

Thanks

Detritis
 
01-11-12, 04:58 PM   #2
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Look in of [ Interface > AddOns > nUI > Layouts > Default > nUI_Layout_Default_Dashboard.lua ] for all of the dashboard anchors.

Code:
nUI_DefaultConfig.InfoPanelSelector =
{
    anchor =
    {
        anchor_pt   = "TOPRIGHT",
        relative_to = "nUI_BottomRightBar",
        relative_pt = "TOPLEFT",
        xOfs        = -10,
        yOfs        = 0,
    },
and

Code:
nUI_DefaultConfig.UnitPanelSelector =
{
    anchor =
    {
        anchor_pt   = "TOPLEFT",
        relative_to = "nUI_BottomLeftBar",
        relative_pt = "TOPRIGHT",
        xOfs        = 7,
        yOfs        = 0,
    },
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
01-11-12, 10:46 PM   #3
Detritis
A Black Drake
AddOn Author - Click to view addons
Join Date: Aug 2005
Posts: 87
Thanking you muchly
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Suggestion Box » Moving Action Bars

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off