Hello,

I can't get NativeDragEvent.NATIVE_DRAG_ENTER to fire.

I am using the SDK bundled with Flex 3.0.1 and AIR 1.1. I hit Run.
Windows Vista ( the slow one ).
Funny thing is that I have other air applications install where Native
D&D is working OK.

Am I missing something here?


<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication
        xmlns:mx="http://www.adobe.com/2006/mxml";

    layout="vertical"
    creationComplete="app_creationComplete( event )"
    >
    <mx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import flash.events.NativeDragEvent;

                private function app_creationComplete( event:FlexEvent ):void
                {
                    addEventListener(
NativeDragEvent.NATIVE_DRAG_ENTER, app_nativeDragEnter );
                }


                public function app_nativeDragEnter(
event:NativeDragEvent ):void
                {
                                        trace(  "enter" );
                }

                ]]>
        </mx:Script>
        <mx:Label text="Drag sth here..."/>
</mx:WindowedApplication>


Thanks,
A

-- 
:::: Aldo Bucchi ::::
+56 9 7623 8653
skype:aldo.bucchi
twitter:aldonline
http://aldobucchi.com/
http://univrz.com/

PRIVILEGED AND CONFIDENTIAL INFORMATION
This message is only for the use of the individual or entity to which it is
addressed and may contain information that is privileged and confidential. If
you are not the intended recipient, please do not distribute or copy this
communication, by e-mail or otherwise. Instead, please notify us immediately by
return e-mail.
INFORMACIÓN PRIVILEGIADA Y CONFIDENCIAL
Este mensaje está destinado sólo a la persona u organización al cual está
dirigido y podría contener información privilegiada y confidencial. Si usted no
es el destinatario, por favor no distribuya ni copie esta comunicación, por
email o por otra vía. Por el contrario, por favor notifíquenos inmediatamente
vía e-mail.

Reply via email to