Hi,
check th eFlex2 Help ;) Drag&Drop .. %)

Flex2 supports a simple model of drag and drop
all you need to do is to enable the TileList to accept drags and accept drops

<code>
        myTileList.dragEnable = true;
        myTileList.dragEnter = myCustomDragEnterMethod;
        myTileList.dragDrop = myCustomDragDropMethod;
</code>
if you want to have the real deal - use a DragManager, a DragSource, a DragProxy and a DragTarget. Best you look it up in the help sectioon of Flex -
BUT ITS NOT A DREAM ;)
amir

Am 11:23 AM 7/10/2007 schrieben Sie:
I am looking for clues to implement drag&drop features to a TileList (AS3) just like in Flex
something like a dynamic basket:

SWF objects are loaded into the a TileList

than you can drop them into a basket

all this in Flash AS3...

Is it a dream ?
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to