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();