I have modified the HeaderControler Widget so that is it quite short and only includes a few widgets. I am trying to move the widget under the MapSwitcherWidget which is on the top right corner of the screen.
Example:
<!-- UI elements -->
<splashpage label="Your Guide to Conservation Areas in Ontario" config="widgets/mySplash/SplashWidget.xml" url="widgets/MySplash/SplashWidget.swf"/>
<widget left="10" top="135" config="widgets/Navigation/NavigationWidget.xml" url="widgets/Navigation/NavigationWidget.swf"/>
<!-- widget right="-2" bottom="-2" config="widgets/OverviewMap/OverviewMapWidget.xml" url="widgets/OverviewMap/OverviewMapWidget.swf"/ -->
<widget right="30" top="5" config="widgets/MapSwitcher/MapSwitcherWidget.xml" url="widgets/MapSwitcher/MapSwitcherWidget.swf"/>
<widget right="30" top="30" config="widgets/HeaderController/HeaderControllerWidget.xml" url="widgets/HeaderController/HeaderControllerWidget.swf"/>
Problem is with these settings the widget shows up flush on the left side of the screen. The only way I have been able to move the widget is the following:
<widget left="1450" top="30" config="widgets/HeaderController/HeaderControllerWidget.xml" url="widgets/HeaderController/HeaderControllerWidget.swf"/>
However this is only visible on large monitors...
Is there some code that is forcing the HeaderController to the right side of the screen? Do you know of any workarounds to getting the widget in the correct location?
Thanks.