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 projector file to write to an excel file?
> Maybe someone wrote a class for this? or maybe this isn't possible, who
> knows?
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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 formulas in the cells as well, and this works. Just use the
=SUM() (or whatever) format that you would manually type into the excel
spreadsheet when creating the formula.

August

On 3/31/06, Flash guru <[EMAIL PROTECTED]> wrote:
>
> Is it possible for a flash projector file to write to an excel file?
> Maybe someone wrote a class for this? or maybe this isn't possible, who
> knows?
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>



--
-


August Gresens
Technical Director
Black Hammer Productions, NYC
[EMAIL PROTECTED]

-

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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?

Is it possible for a flash projector file to write to an excel file?Maybe 
someone wrote a class for this? or maybe this isn't possible, [EMAIL PROTECTED] 
change your subscription options or search the 
archive:http://chattyfig.figleaf.com/mailman/listinfo/flashcodersBrought to you 
by Fig Leaf SoftwarePremier Authorized Adobe Consulting and 
Traininghttp://www.figleaf.comhttp://training.figleaf.com

___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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 "Cache-Control","post-check=0,
pre-check=0,false"

/*
I force to download the document whit this statement

response.AddHeader
"Content-Type","application/force-download"
*/

all that you want to put in the document, is stored in
a variable and send in a 

Response.write(string)  

/* you can write tables /* 

maybe you can do something similar with javascript and
embed in a html  document 

you can view the sample in the following link 

http://201.131.19.21/administracion2/bitacora/portalesrevision.html

/* In the excel icon  /*

I hope it helps :)

Ing. Juan Anzaldo
Tel Cel. 614 427-6523
Blog : http://janzaldo.blogspot.com

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com