I find that the Export of Manipuate contains backforward play, see a simplified example:
Export["try.swf",
Manipulate[
Plot[Sin[2 x + φ], {x, 0, 10}], {φ, 0, 2 π}]]
You can see the problem in the SWF file. (I'm sorry that the exported SWF file cannot be uploaded here)
Actually, I have two questions here,
Is there any simple way to get a animation with only forward play? I can find nothing about this in the help documents.
Why is GIF not working in
Export? That is to say, if I useExport["try.gif", Manipulate[...]],the exported file, otherwise an animation, is only a static picture actually.


Export["yourfile.gif", Table[Plot[Sin[2 x + \[Phi]], {x, 0, 10}], {\[Phi], 0, 2 Pi, 2 Pi/20}]]– belisarius Oct 29 '12 at 3:46Animate[]. I don't remember it right now – belisarius Oct 29 '12 at 3:51