Is there any way to hide a widget from the screen but still have it active? I would like to have a georss widget open but not have the widget window visible.
<widget label="Earthquakes (GeoRSS)" x="-500" y="-500" icon="assets/images/i_rss.png" config="widgets/GeoRSS/GeoRSSWidget.xml" url="widgets/GeoRSS/GeoRSSWidget.swf"/>
<s:HGroup id="boxMessage"
width="100%"
includeInLayout="{msgVisible}"
visible="{msgVisible}">
<mx:Image id="swfMessage"
source="assets/images/loader.swf"
visible="false"/>
<mx:Text id="txtMessage"
width="90%"
text=""/>
</s:HGroup>
<title>Little Traverse Conservancy</title> <subtitle>Nature Preserves webmap</subtitle> <logo>assets/images/logo.png</logo> <style> <colors>0x4C2600,0xFFEDB8,0xB2AD81,0x6F6750,0x4C2600</colors> <alpha>0.8</alpha> </style> <!-- UI elements --> <widget left="10" top="50" 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="20" top="55" config="widgets/MapSwitcher/MapSwitcherWidget.xml" url="widgets/MapSwitcher/MapSwitcherWidget.swf"/> <widget left="0" top="0" config="widgets/HeaderController/HeaderControllerWidget.xml" url="widgets/HeaderController/HeaderControllerWidget.swf"/> <widget x="-500" y="-500" config="widgets/preload/GeoRSSWidget.xml" url="widgets/preload/GeoRSSWidget.swf"/>
Config.xml <!-- UI elements --> <widget left="10" top="50" 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="20" top="55" config="widgets/MapSwitcher/MapSwitcherWidget.xml" url="widgets/MapSwitcher/MapSwitcherWidget.swf"/> <widget left="0" top="0" config="widgets/HeaderController/HeaderControllerWidget.xml" url="widgets/HeaderController/HeaderControllerWidget.swf"/> <widget left="-500" top="-500" config="widgets/preload/GeoRSSWidget.xml" url="widgets/preload/GeoRSSWidget.swf"/>
GeoRSSWidget.mxml
<viewer:WidgetTemplate id="wTemplate"
width="330" height="300"
closed="widgetClosedHandler(event)"
minHeight="100"
minWidth="300"
open="widgetOpenedHandler(event)">
<s:NavigatorContent width="100%" height="100%">
<s:layout>
<s:VerticalLayout gap="1"/>
</s:layout>
<s:HGroup id="boxMessage"
width="100%"
includeInLayout="{msgVisible}"
visible="{msgVisible}">
<mx:Image id="swfMessage"
source="assets/images/loader.swf"
visible="false"/>
<mx:Text id="txtMessage"
width="90%"
text=""/>
</s:HGroup>
<s:Scroller width="100%" height="100%"
horizontalScrollPolicy="off">
<GeoRSS:GeoRSSFeedDataGroup id="geoRSSFeedDG"
dataProvider="{geoRSSFeedAC}"
geoRSSFeedClick="clickGeoRSSFeed(event)"
geoRSSFeedMouseOut="mouseOutGeoRSSFeed(event)"
geoRSSFeedMouseOver="mouseOverGeoRSSFeed(event)">
<GeoRSS:layout>
<s:VerticalLayout gap="2"
horizontalAlign="justify"
useVirtualLayout="true"/>
</GeoRSS:layout>
</GeoRSS:GeoRSSFeedDataGroup>
</s:Scroller>
</s:NavigatorContent>
</viewer:WidgetTemplate>
<viewer:WidgetTemplate id="wTemplate" width="330" height="300" closed="widgetClosedHandler(event)" minHeight="100" minWidth="300" open="widgetOpenedHandler(event)">
<viewer:WidgetTemplate id="wTemplate" width="330" height="300" closed="widgetClosedHandler(event)" minHeight="100" minWidth="300" visible="false" open="widgetOpenedHandler(event)">