MathGroup Archive 2011

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: reducing the size of a Manipulate slider control, problem when using ImageSize

  • To: mathgroup at smc.vnet.net
  • Subject: [mg123366] Re: reducing the size of a Manipulate slider control, problem when using ImageSize
  • From: Chris Young <cy56 at comcast.net>
  • Date: Sun, 4 Dec 2011 02:50:29 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <fbj3ae$noj$1@smc.vnet.net>

I spoke to soon: The following syntax works fine, also, for making 
small controls:

Manipulate[
 foo[], 
 
 {x, 0, 1, ImageSize -> Tiny}
 ]

The important thing is that the option ImageSize -> Tiny goes inside 
the same set of curly brackets as the control limits.

On 2007-09-04 08:00:14 +0000, Nasser Abbasi said:

> 6.0.1:
> 
> Problem to solve is this: Trying to control the size of the controls that
> used by different manipulate entries. For example, this will produce a
> slider:
> 
> Manipulate[foo[],{x,0,1}]
> 
> But when I did the following below, the slider went away! (is this a bug or
> a feature?)
> 
> Manipulate[foo[], {{x, 0, 1}, ImageSize -> Tiny}]
> 
> I can;t explain what it did that. According to help, Slider does have an
> ImageSize option, so I figured I'll try it here.
> How else can one make the above slider in Manipulate smaller in size? I want
> to fit 2 slider next to each others instead of on top of each others on the
> screen.
> 
> thanks,
> Nasser





  • Prev by Date: Re: Delete close, but not identical elements in an array
  • Next by Date: Re: Delete close, but not identical elements in an array
  • Previous by thread: Re: Area of two intersecting circles
  • Next by thread: Re: reducing the size of a Manipulate slider control, problem when using ImageSize