From: lammspillning on
Hi!
I have a problem, I use php to load data from my database into my movieclip.
While this data is loading it kind of locks all my other actionscripts in the
movie until all the data has been retrieved from the database.
Is it possible to work around this or do a preloader that can sense how long
it will be for all the data to loaded?

From: kglad on
the only work-around is to have your php file use sequential small queries instead of one large query.
From: lammspillning on
ok.. is that something I need to work with within the php-file or how would I do that?
From: kglad on
how you do that depends on what you're currently doing. i don't know of any universal way to do this.