Re: "movie" of Table output for web page
- To: mathgroup at smc.vnet.net
- Subject: [mg73732] Re: "movie" of Table output for web page
- From: David Bailey <dave at Remove_Thisdbailey.co.uk>
- Date: Tue, 27 Feb 2007 05:40:46 -0500 (EST)
- References: <erufsi$sd7$1@smc.vnet.net>
Murray Eisenberg wrote:
> Without using webMathematica, I want to be able to put on a web page a
> "movie" consisting of the successive values of a Table whose entries are
> mathematical instructions. For example, of
>
> TraditionalForm/@Table[Integrate[x^n Exp[x],x],{n,1,10}]
>
> I know how to make such a movie where the Input cell's output is already
> a sequence of graphics (namely, Export as GIF).
>
> But how does one handle non-Graphics output?
>
>
Murray,
How about something like:
Export["c:\\foo.GIF",ToBoxes[{{1,2},{3,4}}//TableForm]]
Of course, you would use a list of ToBoxes expressions in the case where
you were creating a movie.
Regards,
David