vote up 0 vote down star
1

I am using Flex 3 under Flash Player 9.

I have a datagrid that I want to export to Excel. I construct the Excel object (ByteArray) in Actionscript, and now I want to save it using FileReference. However, under FlashPlayer 9, FileReference only has a download method. Can I somehow point this download method to the Excel object?

flag

Are you trying to write the data to disk as a csv/.xls file? That is not possible if you have a Flex app. – dirkgently Mar 2 at 16:02
But you can download and save files from within Flex, right? That's the workaround I'm asking about. – Mike Sickler Mar 2 at 16:38

2 Answers

vote up 2 vote down check

I think you need to upload your data to your server, and then download it to your client. Look at this example for saving images created in as3 to a client.

OR (this is hackish, but might get done what you need) you can print your data to the debug console.

link|flag
Thanks. That worked great! – Mike Sickler Mar 2 at 17:41
vote up 0 vote down

Is there any difference using flash10?

link|flag
yes, you have the FileReference.save method ;) – Cay Oct 12 at 22:15

Your Answer

Get an OpenID
or

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