Hauts, изображения анимируется с помощью этого класса, основанного на
AnimateProperty

Код AS3:
package code.effects.tweens
{
import flash.display.DisplayObject;
import mx.effects.AnimateProperty;
import mx.effects.easing.*;
public class Tweener extends AnimateProperty
{
public function Tweener(target:DisplayObject,property:String,easingType:Function,start:Number,end:Number,duration:Number):void {
super(target);
this.easingFunction = (easingType!=null)?easingType:Linear.easeIn;
this.property = property;
this.fromValue = start;
this.toValue = end;
this.duration = duration;
}
}
}
Ты это хотел увидеть?
iflamberg, wmode стоит opaque, transparent не могу установить, т.к. приложение используется в ВК.