RE: [Flashcoders] Flash to excel?

2006-04-03 Thread Juan Anzaldo
I export reports in a excel file from flash writing the headers like: response.AddHeader Content-Type,application/xls response.AddHeader Content-Disposition,attachment;filename=reporteBitacora.xls response.AddHeader Content-Type,application/force-download response.AddHeader

Re: [Flashcoders] Flash to excel?

2006-03-31 Thread Yehia Shouman
You can use flash to collect your data into a CSV string, then you can pass this (in a web scenario) to a server side script to write it, or if you are using a projector like SWF Studio you can use its FileSys plugin. On 3/31/06, Flash guru [EMAIL PROTECTED] wrote: Is it possible for a flash

Re: [Flashcoders] Flash to excel?

2006-03-31 Thread August Gresens
I do this with Director all the time - you should be able to do it with a Flash Projector and something like Zinc to write the file. I create a tab delimited file with an xls extension - on Windows this will show up in the OS as an excel file. Double clicking it will launch Excel. I've also done

RE: [Flashcoders] Flash to excel?

2006-03-31 Thread
Ive seen it done... Look into the System class and using the clipboard. --- On Fri 03/31, Flash guru [EMAIL PROTECTED] wrote: From: Flash guru [mailto: [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Date: Fri, 31 Mar 2006 10:40:01 -0500 Subject: [Flashcoders] Flash to excel