Lets say I have a very simple manipulate in Mathematica given by:
Manipulate[Plot[Sin[a x],{x,-2 Pi,2 Pi}],{a,0,5}]
I want two things which I am unable to do:
I want an animation of the following plot with
abeing displayed on the plot likea = 'value'I want to export only the animation with the value of
adisplayed on it as a movie file. I do not want the slider or anything.
Please suggest. Thanks


Manipulate[ Plot[Sin[a x], {x, -2 Pi, 2 Pi}, Epilog -> Inset[Framed[Style["a =" <> ToString[a], 20], Background -> LightYellow], {Right, Bottom}, {Right, Bottom}]], {a, 0, 5}]– Hector Nov 09 '14 at 08:53