Re: Color Slidder Bar Button & Panel Face
- To: mathgroup at smc.vnet.net
- Subject: [mg122508] Re: Color Slidder Bar Button & Panel Face
- From: Armand Tamzarian <mike.honeychurch at gmail.com>
- Date: Sun, 30 Oct 2011 04:24:03 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <j8gnk1$5fh$1@smc.vnet.net>
On Oct 29, 10:21 pm, Bill <WDWNORW... at aol.com> wrote:
> Hi:
>
> I have the following plot:
>
> Manipulate[Plot[Sin[x(1+a x)],{x,0,6},Background->LightYellow],{a,0,2}]
>
> How can I color the slidder bar button?
>
> How can I color the panel face?
>
> Work-arounds are welcome.
>
> Thanks,
>
> Bill
Framed[
Manipulate[
Plot[Sin[x (1 + a x)], {x, 0, 6}, Background -> LightYellow], {a, 0,
2}, Paneled -> False],
Background -> Red]
To change the slider button colour AFAIK you would need to make your
own slider. See tutorial/AdvancedManipulateFunctionality for an
example. If you only want to change the form of the button, and not
the colour, you can use the AppearanceElements option.
Mike