Hi, I've not taken a deep look at you code but it seems to me that this is a async issue:
If your inhouse network is fast enough maybe your http calls will handled in a synchronous fashion without any problems, but that's just accidentally. Keep in mind that http calls are asynchronous. If your first http request is not completely handled and you create the next one by just replacing the first URLRequest instance by a new URLRequest instance, the first one will probably fail. So maybe you have to take care to process your http requests one by one (Start the next call not before the previous is completely handled) or you could create several instances of URLRequest and handle each result by its particular URLRequest instance. I hope I could explain what I wanted to say... Olaf -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Application-starts-but-then-shows-black-screen-tp13991p13995.html Sent from the Apache Flex Users mailing list archive at Nabble.com.
