
Код AS3:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
private function init():void
{
list1.dataProvider=new ArrayCollection([
{label:"Test1"},
{label:"Copy Me"},
{label:"check"},
{label:"one"},
{label:"tu"}
]);
}
]]>
</mx:Script>
<mx:List id="list1" x="41" y="21" dragEnabled="true" dropEnabled="true" dragMoveEnabled="false"/>
<mx:List id="list2" x="211" y="21" height="156" dragEnabled="true" dropEnabled="true" dragMoveEnabled="false"/>
</mx:Application>