View Single Post
08-14-12, 03:27 PM   #11
footsoldr2
A Deviate Faerie Dragon
Join Date: Apr 2009
Posts: 16
Well I'm getting closer. I killed all my addons except for nUI and CT_Core and CT_Viewport. I have the following settings in the Interface > AddOns > nUI > Main > nUI.lua file:
nUI_BottomBars.Anchor = CreateFrame( "Frame", "$parent_Anchor", nUI_BottomBars );
nUI_BottomBarsLocator:SetPoint( "BOTTOMRIGHT", nUI_MasterFrame, "BOTTOMRIGHT", 2000, 0 );
nUI_BottomBars:SetPoint( "TOP", nUI_BottomBarsLocator, "TOP", 0, 0 );
nUI_BottomBars.Anchor:SetPoint( "TOP", nUI_BottomBars, "TOP", 0, 0 );

nUI_Dashboard.Anchor = CreateFrame( "Frame", "$parent_Anchor", nUI_Dashboard );
nUI_Dashboard:SetPoint( "BOTTOM", nUI_BottomBarsLocator, "TOP", 0, 0 );
nUI_Dashboard.Anchor:SetPoint( "CENTER", nUI_Dashboard, "CENTER", 0, 0 );

nUI_TopBars.Anchor = CreateFrame( "Frame", "$parent_Anchor", nUI_TopBars );
nUI_TopBarsLocator:SetPoint( "BOTTOMRIGHT", nUI_MasterFrame, "TOPRIGHT", 2000, 0 );
nUI_TopBars:SetPoint( "BOTTOM", nUI_TopBarsLocator, "BOTTOM", 0, -115 );
nUI_TopBars.Anchor:SetPoint( "BOTTOM", nUI_TopBars, "BOTTOM", 0, 0 );
This moved it to the right, but high up and made the nUI frame quite tall (see attached jpeg).

I then realized I had made a change to the values at the end of the file so I changed that back:
nUI_MasterFrame:SetPoint( "BOTTOM", UIParent, "BOTTOM", 0, 0 );
nUI_MasterFrame:SetPoint( "TOP", UIParent, "TOP", 0, 0 );
Which yielded the second picture.

So now I just need to move the top dashboard over. Anyone know which code line does that?

Thank you for your help and patience.
Attached Thumbnails
Click image for larger version

Name:	WoW & nUI.jpg
Views:	983
Size:	140.4 KB
ID:	7069  Click image for larger version

Name:	WoW & nUI 2.jpg
Views:	805
Size:	158.1 KB
ID:	7070  

Last edited by footsoldr2 : 08-14-12 at 03:50 PM. Reason: found a change just after I had submitted it