Показать сообщение отдельно
Старый 12.03.2013, 16:00
mr.TrueMan вне форума Посмотреть профиль Отправить личное сообщение для mr.TrueMan Найти все сообщения от mr.TrueMan
  № 5  
Ответить с цитированием
mr.TrueMan

Регистрация: Jun 2012
Сообщений: 17
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 не могу установить, т.к. приложение используется в ВК.