I did not want to install the app, but I have done some sliding in and out...
I used a combination of MOVE effects and RESIZE in some cases. So for example if you want to slide a Canvas (with its children) you can approach as follows... <mx:Move id="moveEffect" xTo="1" duration="500" target="myCanvas" /> <mx:Canvas id="myCanvas" ... /> in an eventHandler you can then trigger the effect using moveEffect.play(); This is the bare minimum... but it explains the mechanism and what to look for... --- In [email protected], "Nate Pearson" <[EMAIL PROTECTED]> wrote: > > I'm trying to figure out how the "slide in slide out" effect is done. > > Here is an example in an apollo app: http://www.finetune.com/desktop/ > (pretty cool app by the way!) > > When you start finetune desktop up and click the arrows left an right > you see how one things slides in and one slides out? That's what I > want! > > How the heck do you do it? Is it a tween? It looks like there is a > non-linear easing function on it but I'm a noob to effects. > > Thanks for your help in advance! :) >

