View Single Post
  #2  
Unread 09-23-2010, 06:34 AM
Brygard2007's Avatar
Brygard2007 Brygard2007 is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2007
Location: http://www.youtube.com/user/Brygard2009
Posts: 183
I also had trouble with it.

i find out that you must always have the following code on the second line:

Code:
<Element ID="ToolbarField" X="0" Y="9999" Width="1024" Height="200">
it should look like this:

Code:
<PanelFile ID="toolbar">
<Element ID="ToolbarField" X="0" Y="9999" Width="1024" Height="200">

	<Element ID="LevelMeter" 					X="428"  Y="187" Width="500" Height="20">					
		
        	<Element ID="LevelMeter_LevelUpXP_TutorialHighlight"    X="0"    Y="0"   Width="500" Height="20" />
        	<Element ID="LevelMeter_Experience_TutorialHighlight"   X="0"    Y="0"   Width="500" Height="20" />		
       		<Element ID="LevelMeterText" 				X="0"    Y="0"   Width="500" Height="20" />
        	<Element ID="LevelMeterFill" 				X="0"    Y="0"   Width="500" Height="20" />
       		<Element ID="LevelMeter_BonusMeter" 			X="0"    Y="0"   Width="500" Height="20" />
		<Element ID="LevelMeterBg" 				X="0"    Y="0"   Width="500" Height="20" />
		<Element ID="LevelMeter_Overlay" 			X="0"    Y="0"   Width="500" Height="20" />
        	
      	</Element>
		
</PanelFile>
Oh by the way you notice I have set the Y at 9999 because I wanted the main bar to be always stuck at the botttom of the screen no matter what high resolution you play at.
Reply With Quote