I want to store some test data for a FlexUnit test in small XML files in my Flex project, and access them trivially for the flex test. How can I load these bits of data synchronously? HTTPService is the way I'd be loading them _a_synchronously, but adding event handlers to my test cases seems like a bit of overkill.

link|improve this question

59% accept rate
feedback

2 Answers

up vote 1 down vote accepted

see this post for a similar sort of thing

http://stackoverflow.com/questions/1164257/load-xml-file-in-flex-before-application-start-intialises

link|improve this answer
feedback

To the best of my knowledge, there is no support for synchronous network & file I/O -- all such activity happens on the background thread, and is exposed to the main thread with event handlers.

link|improve this answer
I should add that you can always construct workarounds to this, such that your app treats the call synchronously even if the underlying player code doesn't work that way. But chances are doing so would result in a good deal more code than you'd have with just the event handlers alone. – Christian Nunciato Jul 16 '09 at 19:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.