Jump to content
Fórum Script Brasil
  • 0

Erro actionscript 2.0


Rodrigo26

Question

Boa noite,

Criei:

- Um botão de nome btBrowse

- Uma campo de texto dinâmico de nome tFile

Criei um código simples. Porém estou enferrujado e não sei como corrijir o erro:

import flash.net.FileReferenceList;
import flash.net.FileReference;

var btBrowse:MovieClip;
var tFile:TextField;
var objUpload:Object = new Object();
//criando a instancia da classe FileReference, responsável pelo Upload...
var    frUpload:FileReference = new FileReference();

function initUpload(Void):Void
{
    //ação de escolha de arquivos...
    objUpload.onSelect = function(files:FileReferenceList):Void
    {
        foreach(frUpload in files.fileList)
        {
            uploadSingleFile(frUpload);            
        }
    }
    
    function uploadSingleFile(file:FileReference):void 
    {
       tFile.text += file.name;
       //método para enviar o arquivo em multipart ao servidor... FileReference.upload(seuEndereço)...
       file.upload("./upload.php");
    }

    //adicionando as ações de listener ao objeto de Upload...
    frUpload.addListener(objUpload);
}

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...