forwarding

Dimitrios Gianninas
Moderator

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jtgrassie
Sent: Wednesday, April 02, 2008 3:28 PM
To: [EMAIL PROTECTED]
Subject: Re: AIr and NativeDragEvents

addEventListener(NativeDragEvent.NATIVE_DRAG_ENTER, onDragEnter); 
addEventListener(NativeDragEvent.NATIVE_DRAG_DROP, onDragDrop);


private function onDragEnter(event:NativeDragEvent):void
{
    if(event.clipboard.hasFormat(ClipboardFormats.FILE_LIST_FORMAT))
        NativeDragManager.acceptDragDrop(this);
}

private function onDragDrop(event:NativeDragEvent):void
{
    NativeDragManager.dropAction = NativeDragActions.COPY;
    var files:Array =
event.clipboard.getData(ClipboardFormats.FILE_LIST_FORMAT) as Array;
    for each (var f:File in files)
    {
        trace(f.nativePath);
    }
}


--- In flexcoders@yahoogroups.com, "djhatrick" <[EMAIL PROTECTED]> wrote:
>
> HI,
> 
> I am working with Air and dragging from the desktop to my application.
>  I've got notice that my NativeDragEvent is working.  When I get my 
> File list array from my clipboard event, what's next?
> 
> How can I access the data for conversion to byteArray to send to the 
> server (if that's even necessary)?  How can I determine the filetype 
> with the clipboardFormats... etc.
> 
> For instance, how do I find the filename and extension of the file 
> that I am dragging.  The few examples I've found out there are 
> examples written for Air Beta 1.  I am one "those people" who needs 
> examples to understand the process.  If you have any links of updates 
> posts it would be greatly appreciated.
> 
> I'm ready to use the api, but it's a little daunting, any help 
> appreciated.  I went looking for an air book in the bookstore after i 
> saw the plethora of titles on amazon, and then I was bummed to learn 
> that they are still unavailable :(
> 
> Thanks,
> Patrick
>


-- 
WARNING
-------
This electronic message and its attachments may contain confidential, 
proprietary or legally privileged information, which is solely for the use of 
the intended recipient.  No privilege or other rights are waived by any 
unintended transmission or unauthorized retransmission of this message.  If you 
are not the intended recipient of this message, or if you have received it in 
error, you should immediately stop reading this message and delete it and all 
attachments from your system.  The reading, distribution, copying or other use 
of this message or its attachments by unintended recipients is unauthorized and 
may be unlawful.  If you have received this e-mail in error, please notify the 
sender.

AVIS IMPORTANT
--------------
Ce message électronique et ses pièces jointes peuvent contenir des 
renseignements confidentiels, exclusifs ou légalement privilégiés destinés au 
seul usage du destinataire visé.  L'expéditeur original ne renonce à aucun 
privilège ou à aucun autre droit si le présent message a été transmis 
involontairement ou s'il est retransmis sans son autorisation.  Si vous n'êtes 
pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, 
veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses 
pièces jointes, de votre système.  La lecture, la distribution, la copie ou 
tout autre usage du présent message ou de ses pièces jointes par des personnes 
autres que le destinataire visé ne sont pas autorisés et pourraient être 
illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en 
aviser l'expéditeur.

Reply via email to