Your FileReference instance may be garbage collected. The same thing happens with file upload.
Try moving it to the instance variable:
private var fr = new FileReference(); private function onSaveButtonClick(event:MouseEvent):void{ fr.save(fileToSave); }
source share