View Single Post
05-30-09, 10:22 AM   #20
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Let me address moving the top bars first, then I'll reply to the other questions in a separate message.

You can move the top bars manually by editing [ Interface > AddOns > nUI > Main > nUI.xml ] -- this is one of the things that will change in the future as it's part of nUI that has not yet been incorporated into the layout engine.

In any event, you'll find the following section in the file...

Code:
<Frame name="nUI_TopBarsLocator" frameStrata="BACKGROUND" toplevel="false" parent="nUI_MasterFrame">
    <Anchors>
          <Anchor point="BOTTOM" relativeTo="nUI_MasterFrame" relativePoint="TOP" />
    </Anchors>
    <Size>
        <AbsDimension x="2560" y="2" />
    </Size>
</Frame>
Change it as follows...

Code:
<Frame name="nUI_TopBarsLocator" frameStrata="BACKGROUND" toplevel="false" parent="nUI_MasterFrame">
    <Anchors>
         <Anchor point="BOTTOM" relativeTo="nUI_MasterFrame" relativePoint="TOP">
               <Offset>
                   <AbsDimension x="0" y="0" />
              </Offset>
         </Anchor>
     </Anchors>
     <Size>
         <AbsDimension x="2560" y="2" />
     </Size>
</Frame>
Where you see the y="0" highlighted, just tweak that to move the upper console up and down. Higher values of y move it up, negative values move it down.
__________________

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/

Last edited by spiel2001 : 05-30-09 at 10:25 AM.