Вот мой код:

Код:
this.mc_navigator2.bt_right.onRelease = function() {
import mx.transitions.Tween;
if (posImage<(picNumber-1)) {
_root["pic"+posImage].setMask(mask0_mc);
_root["pic"+(posImage+1)].setMask(mask1_mc);
var twn1:Object = new Tween(_root["pic"+posImage], "_x", mx.transitions.easing.Strong.easeOut, 18, -282, 3, true);
var twn2:Object = new Tween(_root["pic"+(posImage+1)], "_x", mx.transitions.easing.Strong.easeOut, 300, 18, 3, true);
posImage++;
}
};
куда здесь можно вставить fforward() ?
Может сама реализация не очень удачная?