次のコードでは、果物の画像の onclick で、適切な効果で果物の画像を箱の画像にドロップする方法 (つまり、果物の画像を箱の画像にドロップすることを示す必要があります)。
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
import mx.controls.Button;
import mx.controls.Alert;
public function clickhandler(event:Event):void
{
}
]]>
</mx:Script>
<mx:Canvas id="myCanvas"
height="800" width="800"
borderStyle="solid"
backgroundColor="#A9C0E7">
<mx:Image
height="50" width="50"
x="100" y="10"
source="@Embed(source='fruits.jpg')"
click="clickhandler(event)" />
<mx:Image
height="200" width="200"
x="300" y="350"
source="@Embed(source='box.jpg')" />
</mx:Canvas>
<!--<mx:TextInput x="231" y="175" id="txtLogin"/>-->
</mx:Application>