我在我的as3代码中写了这个动作xml:
public function moveMe(e:Event)
{
var myXml =
<Motion duration="10">
<source>
<Source>
</Source>
</source>
<Keyframe index="0">
<tweens>
<SimpleEase />
</tweens>
</Keyframe>
<color>
<Color tintColor="0x950F1B" tintMultiplier="1"/>
</color>
<Keyframe index="30" x="50" y="30" scaleX="1.1" scaleY="0.9" rotatin="21"/>
</Motion>;
myAnimator = new Animator(myXml, mySubject);
myAnimator.play();
}
运动和比例变化工作很好,但颜色不会改变,我不知道为什么。 谢谢!