View Single Post
  #18  
Unread 12-06-2009, 12:46 AM
Erythor Erythor is offline
The Undefeated
 
Join Date: Apr 2007
Posts: 6
OK, I figured out the problem. You can't just enter the following code to move the new main menu button:

Code:
<Element ID="ToolBarButton_MainMenu" X="6" Y="143" Width="30" Height="45"> </Element>
For some reason, this seems to do nothing unless you also have the ToolBarfield code also in the XML file:

Code:
<PanelFile ID="ID_UISkin_Toolbar">
  <Element ID="ToolbarField" X="0" Y="508" Width="1024" Height="200">
  <Element ID="ToolBarButton_MainMenu" X="6" Y="143" Width="30" Height="45">
</panel>
If I input the extra lines, as above, then the MainMenu line seems to work.
Reply With Quote