vote up 0 vote down star

Hi all

I have a function like this in actionscript3

private function uploadFile(event:MouseEvent):void {
    		var uploader:URLRequest = new URLRequest(serverUploadFile);
    		localFile.upload(uploader);
    	}

how can i call this function from javascript ?

thx

flag

69% accept rate

3 Answers

vote up 1 vote down check

In AS3 Use ExternalInterface to add a javascript callback.

ExternalInterface.addCallback("uploadFile", null, uploadFile);

More details here

link|flag
this seems very practical, i should try – Ahmet vardar Nov 4 at 15:21
1120: Access of undefined property uploadFile. i am getting this error, sorry i am very new in actionscript – Ahmet vardar Nov 4 at 15:29
vote up 0 vote down

Check this tutorial

link|flag
vote up 0 vote down

Use ExternalInterface

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.