I looked at the source to the 2.3 copyright widget by Robert Scheitlin and tried to make something similar for the 1.3 viewer, here's the source, which isn't working:<?xml version="1.0" encoding="utf-8"?>
<!--
////////////////////////////////////////////////////////////////////////////////
//
// Display footer on maps
//
////////////////////////////////////////////////////////////////////////////////
-->
<BaseWidget xmlns ="com.esri.solutions.flexviewer.*"
xmlns:mx ="http://www.adobe.com/2006/mxml"
x ="600"
y ="220"
widgetConfigLoaded ="init()">
<mx:Script>
<![CDATA[
import com.esri.ags.events.ExtentEvent;
import mx.controls.Alert;
import com.esri.ags.Map;
private function init():void
{
map.addEventListener(ExtentEvent.EXTENT_CHANGE, repositionInfo);
txtVersion.text = "footer text";
}
private function repositionInfo(event:Event):void
{
txtVersion.text = "footer text";
}
]]>
</mx:Script>
<mx:Label id="txtVersion" alpha="1" />
</BaseWidget>
And I added the following to the config.xml:<widget right="95" bottom="3" url="com/xyz/widgets/footer/footer.swf"/>Any help is greatly appreciated.