Select to view content in your preferred language

help with ConfigManager

843
2
03-20-2013 09:04 AM
CristianSepulveda_Melo
Deactivated User
help with configManager.as
* configService_resultHandler private function (event: ResultEvent): void
**** {
******** try
******** {
************ / / parse main config configuration file to create data object
************ configdata configdata = new ();
************ var configXML: XML = XML (event.result);
************ configData.configXML = configXML;

I have a question regarding the value var configXML receiving the XML (event.result) that value is or where it gets?

that begins later assigned to another avariables
Tags (2)
0 Kudos
2 Replies
RobertScheitlin__GISP
MVP Emeritus
Cristian,

   If you look at the code the function you are speaking of is configService_resultHandler(event:ResultEvent). So it is the result of a call to the HTTPService call in the loadConfig function.
0 Kudos
CristianSepulveda_Melo
Deactivated User
Cristian,

   If you look at the code the function you are speaking of is configService_resultHandler(event:ResultEvent). So it is the result of a call to the HTTPService call in the loadConfig function.


ok thanks you're right
0 Kudos