如何使用Action Script在Flash中绘制对角线效果?我使用补间动画制作动画,然后尝试从该补间动画生成动作脚本,但动画从屏幕中间开始,然后绘制它。它应该从左角开始,因为它是在常规动画中制作的。这是它生成的动作脚本:
import fl.motion.Animator;
var laser_xml:XML = <Motion duration="75" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
<source>
<Source frameRate="25" x="13.6" y="13.25" scaleX="1" scaleY="1" rotation="0" elementType="drawing object">
<dimensions>
<geom:Rectangle left="10" top="10" width="7.25" height="6.5"/>
</dimensions>
<transformationPoint>
<geom:Point x="-1.3793103448275863" y="-1.5384615384615385"/>
</transformationPoint>
</Source>
</source>
<Keyframe index="0"/>
<Keyframe index="74" x="188.70000000000002" y="189.05"/>
</Motion>;
var laser_animator:Animator = new Animator(laser_xml, laser);
laser_animator.play();