I have added it to the UI element in the config.xml. I still must be missing something in editing the mxml. (I am new to mxml)When the map loads I get just the dots like I want. But then when you click on the map the georss feed window still pops up..
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>