Re: Manipulate, how to slowdown animation
- To: mathgroup at smc.vnet.net
 - Subject: [mg117929] Re: Manipulate, how to slowdown animation
 - From: Heike Gramberg <heike.gramberg at gmail.com>
 - Date: Mon, 4 Apr 2011 07:28:49 -0400 (EDT)
 
You could use the option AnimationRate for this. For example
Manipulate[
 Plot[Sin[x (1 + a x)], {x, 0, 6}], {a, 0, 2, AnimationRate -> 0.2}]
would change a by 0.2 per second if you press play.
Heike.
On 4 Apr 2011, at 12:29, =8Aer=FDch Jakub wrote:
> Dear Mathgroup,
> is it possible to slowdown animation in Manipulate by presetting some option?
>
> (just the example from Help)
>
> Manipulate[Plot[Sin[x (1 + a x)], {x, 0, 6}], {a, 0, 2}]
>
> I can slow the animation down by the button with double down arrow. But I wanted to prepare manipulate to run slow animation from the begining not only after mad clicking on the slowing button.
>
> Thanks in advance for any help
>
> Jakub
>