Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have added a button in flash I want this button to save a mp3 file from the server when a user clicks on it inside a browser.

One way to do this is:

import flash.net.FileReference;
import flash.utils.ByteArray;

var fileReference:FileReference = new FileReference();

var data:ByteArray; // load up your data into this ByteArray

fileReference.save(data, "outputfile.dat");

But how do we load a mp3 file from server in variable 'data'?

share|improve this question
You say "from the server", but to you actually want to upload the file TO the server? If you are simply talking about allowing the user to download a file, just make the browser navigate to the file's URL using navigateToURL(). – richardolsson Feb 7 '10 at 16:22
I just want when someone clicks on a button inside flash, he is able to download a file from the server on the local machine. – Niraj Nawanit Feb 7 '10 at 17:46

1 Answer

Just found FileReference.download() on google

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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