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 example (on that page) work for you? On 4/23/07, João <[EMAIL PROTECTED]> wrote: > 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> > <mx:Parallel target="{p2}" duration="600"> > <mx:Move xTo="293"/> > <mx:Fade alphaTo="1"/> > </mx:Parallel> > </mx:Parallel> > > <mx:Parallel id="hideEffect" duration="600"> > <mx:Parallel target="{p1}" duration="600"> > <mx:Move xTo="-90"/> > <mx:Fade alphaTo="0"/> > </mx:Parallel> > <mx:Parallel target="{p2}" duration="600"> > <mx:Move xTo="500"/> > <mx:Fade alphaTo="0"/> > </mx:Parallel> > </mx:Parallel> > > The problem here is that when changing between views, the showEffect > of the view to show plays at the same time of the hideEffect of the > view thats hiding. How can i make it to first hide the current view, > and only the hiding finishes, the new view starts it's showEffect? > > Thanks, > > João Saleiro > > > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com > Yahoo! Groups Links > > > >

