FYI - there is an easy work around (at least for the flash XML component.)
If you use the .load method it doesn't block so you have to use the callback.
Instead, load the XML file into a text string then just parse if with the flash component (which does block).
I like Dave Miller's suggestion posted on direct-l:
Can you use a bit of recursion driven by an argument to select the call?
on init n
if voidP(n) then do Flash thing (1) with callback = init(2)
case n of 2: do Flash thing (2) with callback = init(3) 3: do Flash thing (3) with callback = init(4) 4: do Flash thing (4) with callback = init(5) 5: do Flash thing (5) end case
end init
-- Cole
[To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [email protected] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
