Вы можете использовать следующий код:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application layout="absolute" xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
public function clickhandler(event:Event):void
{
fruitAnimation.play();
}
]]>
</mx:Script>
<mx:Move id="fruitAnimation" target="{fruitImage}" xTo="375" yTo="450" />
<mx:Canvas backgroundColor="#A9C0E7" borderStyle="solid" height="800" id="myCanvas" width="800">
<mx:Image click="clickhandler(event)" height="50" id="fruitImage" source="@Embed(source='fruits.jpg')"
width="50" x="100" y="10" />
<mx:Image height="200" source="@Embed(source='box.jpg')" width="200" x="300" y="350" />
</mx:Canvas>
</mx:Application>
Если вы хотите добавить параболические движения, вы можете использовать следующий код:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application layout="absolute" xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
import mx.effects.easing.Quadratic;
public function clickhandler(event:Event):void
{
fruitAnimation.play();
}
]]>
</mx:Script>
<mx:Parallel id="fruitAnimation" target="{fruitImage}">
<mx:AnimateProperty property="x" toValue="375" easingFunction="{Quadratic.easeOut}" />
<mx:AnimateProperty property="y" toValue="450" />
</mx:Parallel>
<mx:Canvas backgroundColor="#A9C0E7" borderStyle="solid" height="800" id="myCanvas" width="800">
<mx:Image click="clickhandler(event)" height="50" id="fruitImage" source="@Embed(source='fruits.jpg')"
width="50" x="100" y="10" />
<mx:Image height="200" source="@Embed(source='box.jpg')" width="200" x="300" y="350" />
</mx:Canvas>
</mx:Application>
Надеюсь, это поможет!