Mx: Moving Race Conditions in Flex

In Flex I have a lot of effects Move

and AnimateProperty

.

What I've found in several different places in my code is that too often the effect stops halfway for no apparent reason.

I've found this in many places in my application, and it happens regardless of whether I'm doing something particularly complex.

If anyone else experienced this problem?

0


source to share


1 answer


I didn't come across this issue on purpose, but you might want to take a look at Parallel () and Sequential to make sure it doesn't fire another effect until the first one completes.



This problem can be a byproduct of your application that tries to do too much at the same time and suffers from frame rates and therefore makes your transitions choppy. You can either increase the duration of the transition or try to simplify your application to make it smaller. NTN

0


source







All Articles