|
Alrighty, I’m creating everything
via as3 class and not using MXML persay in combo with script – How can I tap into the DragManager class –
I thought it would be via adding listeners. I thought this would work: Var dg:DataGrid=new DataGrid(); // populate the columns and such dg.multipleSelection=true;
dg.dragEnabled=true;
dg.dropEnabled=true;
dg.addEventListener(DragEvent.DRAG_OVER,onRemoteDragOver);
dg.addEventListener(DragEvent.DRAG_START,onStartDrag);
dg.addEventListener(DragEvent.DRAG_ENTER,onRemoteDragEnter);
dg.addEventListener(DragEvent.DRAG_DROP,onRemoteDragDrop);
dg.addEventListener(MouseEventType.DOUBLE_CLICK, onRemoteDoubleClick); // I thought it should be DragEventType
but its not, according to the screaming compiler. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
YAHOO! GROUPS LINKS
|
- [flexcoders] DragManager events as3 Stacey Mulcahy
- Re: [flexcoders] DragManager events as3 gunnar a reinseth
- Re: [flexcoders] DragManager events as3 stacey
- Re: [flexcoders] DragManager events as3 gunnar a reinseth
- RE: [flexcoders] DragManager events as3 Stacey Mulcahy

