How do i give the Smooth Tweening Effect

Guys most of the Sites have very Smooth Sliding Effect

Can u give me some info to do it… Preety much willing to hear from u. That would be better oops !! Appriciate will be given :kir:

Have a read on this thread (©Voetsjoeba;) )
http://www.kirupaforum.com/forums/showthread.php?t=65908

scotty(-:

oh yeah it works… thnx very much for giving me a idea :kommie:

Or use the easing classes in 2004 Pro.
Create a Tween object and assign an easing function to it:

import mx.transitions.Tween;
 
var obj = myMCinstance;
var prop = "_x";
var func = mx.transitions.easing.Strong.easeOut;
var begin = myMCinstance._x;
var finish = myMCinstance._x + 200;
var duration = 2;
var useSeconds = true;
 
var twn = new Tween(obj, prop, func, begin, finish, duration, useSeconds);

… and there you go!

works :: thx :p: