Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to add a font style for the variable z in my Slider control below. In this toy manipulate example when the user changers the SetterBar or Slider values, the y slider is reset to y=0.1. Of course I can wrap the z Slider control with Row[{Style["Z",Bold], {z, Slider ....}], but then I need to somehow suppress the appearance of z. Thanks in advance for any help.

Brian

Manipulate[
Module[{}, {x, y, z}], {x, 
SetterBar[Dynamic[x, (x = #; y = 0.1) &], {"A", "B", "C"}] &}, {z, 
Slider[Dynamic[z, (z = #; y = 0.1) &], {.1, 10}, 
Appearance -> "Labeled"] &},
{{y, 0.1, Style["Y", 14]}, 0.1, 5, Appearance -> "Labeled"}, 
Initialization :> ({x, z} = {"B", 1})]
share|improve this question

2 Answers

The simplest way to do what I think you're asking for is with the {{u, uinit, ulbl}, ...} control spec form that you've already used in the spec form for y. For example:

Manipulate[
 Module[{}, {x, y, z}],
 {x, SetterBar[Dynamic[x, (x = #; y = 0.1) &], {"A", "B", "C"}] &},
 {{z, .1, Style["Z", Darker@Green, Bold, 16, FontFamily -> Times]}, 
  Slider[Dynamic[z, (z = #; y = 0.1) &], {.1, 10}, 
    Appearance -> "Labeled"] &},
 {{y, 0.1, Style["Y", 14]}, 0.1, 5, Appearance -> "Labeled"},
 Initialization :> ({x, z} = {"B", 1})]

This doesn't require much restructuring of your expression, if you'd like to avoid that...

share|improve this answer

So, you just want to make the name next to the slider colored or bold? I am having a hard time understanding what you want. Why not just use Style as you mentioned? btw, You should not initialize the control variables in the initialization section. They become global. Keep everything inside the Manipulate. Only functions go into the initialization section.

If this is not what you are asking, may be you can make it more clear.

Manipulate[     
{x, y, z},

Grid[{

{Text["x"],SetterBar[Dynamic[x, (x = #; y = 0.1) &], {"A", "B", "C"}]},
{Style["Z",Red],Slider[Dynamic[z,(z=#;y = 0.1)&],{.1,10},Appearance->"Labeled"]},
{Style["y", 14],Slider[Dynamic[y,(y=#) &], {.1, 5, .1},Appearance -> "Labeled"]}
}, Alignment -> Left],

 {{x, "B"}, None},
 {{z, 1}, None},
 {{y, .1}, None}     
 ]

Mathematica graphics

share|improve this answer
Thanks much. That works for me.And also thanks for the suggestion regarding initialization of control variables. Brian – user2088899 Feb 19 at 23:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.