Janie,
You can not make this change if you are only using the compiled Flex Viewer. You have to be using the Source Code version.
So....there's no way to integrate login/password into the compiled version of Viewer?
philipp37;135345 wrote:
Same issue here - works perfect except that the app automatically zooms in as far as possible. This seems very odd to me. Can the extent be hardcoded into the index.mxml file instead of the config.xml?
philipp37;135345 wrote:
Same issue here - works perfect except that the app automatically zooms in as far as possible. This seems very odd to me. Can the extent be hardcoded into the index.mxml file instead of the config.xml?
Did anyone figure out how to keep the Login Flexviewer from Zooming in as far as possible?
Thanks Phillip for the installation steps!
Thanks Andy for the Login asp.net.
Thanks Robert for telling me this is the uncompiled src version of Flexviewer.
private function creationCompleteHandler():void
{
m_instance = this;
initLogging();
//prepare to show error message
AppEvent.addListener(AppEvent.APP_ERROR, errorHandler);
setUrlConfigParams();
setConfigFile();
startLocalConnection();
AppEvent.addListener(AppEvent.CONFIG_LOADED, configLoadedHandler);
//Workaround for Login issue in Flex Viewer 2.4
callLater(waitInitialized);
}
private var clCount:int = 0;
private function waitInitialized():void
{
clCount += 1;
if(clCount != 100){
callLater(waitInitialized);
return;
}
//tell the modules it's on business.
AppEvent.dispatch(ViewerContainer.CONTAINER_INITIALIZED);
}
//End workaround for Login issue in Flex Viewer 2.4