I have followed all of the steps in forum, I think I'm close. After compiling, I get an error in my SiteContainer.mxml (Description Resource Path Location Type
1021: Duplicate function definition. SiteContainer.mxml /Flexviewer1.3/src/com/esri/solutions/flexviewer line 176 Flex Problem)
here is the code in the .mxml file:
public function init():void
{
_container = this;
_lock = true; //make sure only one container is created.
initLogging();
//make sure the event bus is ready.
_containerEventDispatcher = EventBus.getInstance();
//prepare to show error message
SiteContainer.addEventListener(AppEvent.APP_ERROR, showError);
//listen for the config data to be loaded
SiteContainer.addEventListener(AppEvent.CONFIG_LOADED, config);
//tell the modules it's on business.
SiteContainer.dispatch(SiteContainer.CONTAINER_INITIALIZED);
}
I can post all of .mxml files if necessary.
Thanks for any help!
Lee