Need help adjusting main menu (1 Viewer)

TE5LA

Portal Pro
September 16, 2009
82
0
Home Country
United States of America United States of America
I'm at my wits end (which wasn't very long to begin with ) :D

I'm trying to adjust a basic vertical list myHome.xml menu. I want only one menu item to show at a time and want to move it to a particular X/Y coordinate. I can't make it work. I can reduce the buttons to "1" and only one shows up, but it's an unfocused selection. If I move it so it's where I want, that won't be the button that's actually selected. Here's the code:

Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<window>
	<id>0</id>
	<defaultcontrol>50</defaultcontrol>
	<allowoverlay>yes</allowoverlay>
	<autohidetopbar>yes</autohidetopbar>
	<disabletopbar>no</disabletopbar>
	<define>#category:2143</define>
	<define>#itemcount:</define>
	<controls>
		<import>common.window.xml</import>
		<import>common.rss.xml</import>
		<import>common.weather.xml</import>
		<import>common.panel0.xml</import>
		<control>
			<description>Menu</description>
			<type>menu</type>
			<id>50</id>
			<posX>230</posX>
			<posY>700</posY>
			<width>500</width>
			<height>50</height>
			<textcolor>ff8edad9</textcolor>
			<textColorNoFocus>ffc0c0c0</textColorNoFocus>
			<dimColor>80ffffff</dimColor>
			<buttonTextXOff>0</buttonTextXOff>
			<buttonTextYOff>0</buttonTextYOff>
			<buttonOffset>0</buttonOffset>
			<buttonFont>DigitalFont</buttonFont>
			<buttonHeight>50</buttonHeight>
			<spaceBetweenButtons>0</spaceBetweenButtons>
			<numberOfButtons>1</numberOfButtons>
			<textureButtonFocus></textureButtonFocus>
			<textureButtonNoFocus></textureButtonNoFocus>
<!--  ********* Adjusts main menu clip art images ********* -->
			<hoverX>975</hoverX>
			<hoverY>110</hoverY>
			<hoverWidth>580</hoverWidth>
			<hoverHeight>580</hoverHeight>
			<hoverKeepAspectratio>yes</hoverKeepAspectratio>
			<scrollTime>120</scrollTime>
			<scrollTimeMin>60</scrollTimeMin>
			<textureBackground></textureBackground>
		</control>
	</controls>
</window>

Is it not possible to have the menu focus anywhere you want? Seems strange if so.
 

Users who are viewing this thread


Write your reply...
Top Bottom