MathGroup Archive 2008

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: ListAnimate or movie with No AppearanceElements

  • To: mathgroup at smc.vnet.net
  • Subject: [mg89470] Re: ListAnimate or movie with No AppearanceElements
  • From: m.r at inbox.ru
  • Date: Tue, 10 Jun 2008 03:42:16 -0400 (EDT)
  • References: <g2fuc1$2gl$1@smc.vnet.net>

On Jun 8, 1:31 am, Eric Brown <eric.c.br... at mac.com> wrote:
> I wish to show a movie/animation in a notebook, but I do not want any
> of the Mathematica 6 additions showing up.  What I want is just a plain
> flip through the frames without a panel, slider, etc. etc.
>
> As a self-contained example:
>
> table = Table[ Plot[ x^n, {x, -5, 5}], {n, 1, 5, 1}];
> Export[$HomeDirectory <>"/table.avi", table];
> movie=Import[$HomeDirectory <> "//table.avi", {"AVI", "Animation"}]
>
> I have tried playing with AppearanceElements, Panel, Dynamic, etc. but
> no luck.  The best I was able to do was to get the slider to disappear,
> but it left behind a grey frame.
>
> Does someone have a solution to this seemingly simple problem?
>
> Thanks,
>
> Eric
>
> P.S. I have also tried making a table of frames, and then selecting the
>  cell group, and then select Graphics, Rendering, Animate Selected
> Graphics.  Although this is not exactly what I want, it seems like it
> used to be possible to do this in versions < 6.

This is somewhat confusing, currently you have to use AnimatorElements
instead of AppearanceElements in Animate/ListAnimate:

Export["/table.avi", Table[Plot[x^n, {x, -5, 5}], {n, 5}]];
movie = Import["/table.avi", {"AVI", "GraphicsList"}];
ListAnimate[movie, AnimatorElements -> {}, Paneled -> False]

Maxim Rytin
m.r at inbox.ru


  • Prev by Date: Re: Creation and evaluation of polynomials
  • Next by Date: Re: Creation and evaluation of polynomials
  • Previous by thread: Re: ListAnimate or movie with No AppearanceElements
  • Next by thread: Re: ListAnimate or movie with No AppearanceElements