Reputation: 1
I've searched for hours no luck. I'm new to as3 and i can't figure this out.
I have a swf and i want to click a button and for it to open a "save as" box (or something similar) and save a designated file to a location of my choice.
Basically it would be creating a copy of this file to a new location.
If anyone could help my I'd love to hear it!!!
Kind Regards, Jack
Upvotes: 0
Views: 530
Reputation: 1542
import flash.net.FileReference;
var fr:FileReference = new FileReference();
fr.save(yourByteArray, fileName);
this will open "save as" box .
Upvotes: 1