Is there a way to remove the braces from the front end output associated with DynamicModule? For instance:
a=0;
DynamicModule[{x}, {Slider[Dynamic[x]], Dynamic[If[x>.5,a=1;,{}]]}]
This returns a slider with braces around it. Is there a way to avoid or remove the braces?
Row@{Slider...? This is what you want? – Kuba Sep 19 '13 at 05:57Dynamic[If[x > .5, a = 1;, Spacer[0]]]do what you want? – Mr.Wizard Sep 19 '13 at 06:02""as an alternative toSpacer[0]if you will. I have at times foundSpacermore robust so I tend to default to it, but I cannot at the moment remember where or why. – Mr.Wizard Sep 19 '13 at 06:07