Re: [flexcoders] Viewstack showEffect and hideEffect playing at the same time

2007-04-24 Thread Tom Chiverton
On Monday 23 Apr 2007, Tim Walling wrote: That's right. I couldn't remember what the documentation said. I had to create my own viewstack component because I wanted to insert a resize effect in between the show and hide effects. Couldn't you use a Parellel (or Sequence) effect to do that ? --

Re: [flexcoders] Viewstack showEffect and hideEffect playing at the same time

2007-04-23 Thread Manish Jethani
Wow, this page explicitly states that the ViewStack container waits for the completion of the effect specified by the hideEffect property for the container that is being hidden before it reveals the new child container. http://livedocs.adobe.com/flex/201/html/navigators_066_06.html Does that

Re: [flexcoders] Viewstack showEffect and hideEffect playing at the same time

2007-04-23 Thread Tim Walling
That's right. I couldn't remember what the documentation said. I had to create my own viewstack component because I wanted to insert a resize effect in between the show and hide effects. Tim On 4/23/07, Manish Jethani [EMAIL PROTECTED] wrote: Wow, this page explicitly states that the

[flexcoders] Viewstack showEffect and hideEffect playing at the same time

2007-04-22 Thread João
I have one viewStack with two views, both of them with the following effects: mx:Parallel id=showEffect duration=600 mx:Parallel target={p1} duration=600 mx:Move xTo=35/ mx:Fade alphaTo=1/ /mx:Parallel

Re: [flexcoders] Viewstack showEffect and hideEffect playing at the same time

2007-04-22 Thread Tim Walling
I don't think you can. I've had to write my own viewstack-like component in the past to achieve a series of animation effects. In my case it was a fade out, resize, fade in. You might have to write your own component as well if you can't live with the effects that you come up with using a