在as3中的运动xml上的tintColor不起作用

时间:2013-12-05 09:38:38

标签: xml actionscript-3 flash

我在我的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();
        }

运动和比例变化工作很好,但颜色不会改变,我不知道为什么。 谢谢!

0 个答案:

没有答案