On Mon, Nov 03, 2008 at 10:55:00AM +0100, Benedikt Quirmbach <[EMAIL PROTECTED]> wrote: > This is what I do: > > 1. I got s Flex app where I can edit some data. > 2. After editing the data I send them to a PHP script. > 3. the PHP script takes SWFC to combine a library-swf and the new data. > 4. I load the new swf into my Flex app. > 5. Eventually do the same with new data. > > Than I edit the data and call the same PHPscript with the new data. > In my Flex app shows up a new swf with some data missing.
Sounds to me like some process/thread is still busy writing the SWF, while another process/tread is already reading it. Have you considered introducing locks/mutexes? Greetings Matthias
