[Flashcoders] Render order

2007-05-13 Thread John McCormack
Does anyone know of a specification for the render order of items on a frame? For example if on some frame on a parent timeline a variable is set and it's children set the same variable, how does the interpreter decide which value to go with? Or if a variable is logically dependent upon the

Re: [Flashcoders] Render order

2007-05-13 Thread Count Schemula
I could be wrong, but... The last variable setting will be the one that sticks. var someVariable:Number = 0; someVariable = 1; someVariable = 2; someVariable will equal 2. On 5/13/07, John McCormack [EMAIL PROTECTED] wrote: Does anyone know of a specification for the render order of items