And how can I create a list of frames (or better: export to .avi) this one here:
Animate[Graphics[{White,
Line[Table[{-.98^n*Sin[n*Pi/2], .98^n*Cos[n*Pi/2]}, {n, 0, 1000}]]}, PlotRange -> p, ImageSize -> {1280, 720},
Background -> Black], {p, .39, .37, .01}]
The easiest looking one but I do not get it...
Export[NotebookDirectory[] <> "The-Light.avi", Table[Graphics[{White,
Line[Table[{-.98^n*Sin[n*Pi/2], .98^n*Cos[n*Pi/2]}, {n, 0, 1000}]]}, PlotRange -> p, ImageSize -> {640, 360},Background -> Black], {p, .39, .37, .01}]]
does not work, same as my playarounds with ListAnimate....anyone a little hint for me how to create an avi from this?