Re: Showing the Current Value of a Slider in Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg103481] Re: [mg103470] Showing the Current Value of a Slider in Manipulate
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Thu, 24 Sep 2009 07:49:54 -0400 (EDT)
- Reply-to: hanlonr at cox.net
Use Appearance -> "Labeled"
Manipulate[
Plot[Sin[a x + b], {x, 0, 6}],
{{a, 2, "Multiplier"}, 1, 4, 0.05,
Appearance -> "Labeled"},
{{b, 0, "Phase Parameter"}, 0, 10, 0.05,
Appearance -> "Labeled"}]
Bob Hanlon
---- Gregory Lypny <gregory.lypny at videotron.ca> wrote:
=============
Hello everyone,
This Manipulate thing is really cool. I know you can create a text
label and set a default value for a slider (and other controls), but
is it also possible to show the currently-selected slider value beside
the slider?
Regards,
Gregory