Не думаю, что вы можете использовать _x
при использовании класса AS3 Tween
. Ваш SWF-файл Actionscript-2 будет рассматриваться как объект AVM1Movie
(потомки DisplayObject
). А в ActionScript-3 DisplayObject
не имеет свойства _x
. Поэтому попробуйте использовать:
function tweenMe(mc, target) {
myTween = new Tween(mc, "x", Regular.easeOut, mc.x, target, 2, true);
}
tweenMe(mc, 700);
Документация ActionScript-3 гласит:
The AVM1Movie object can use methods and properties inherited from the DisplayObject class (such as x, y, width, and so on). However, no interoperability (such as calling methods or using parameters) between the AVM1Movie object and AVM2 objects is allowed.