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: [mg123442] Re: reducing the size of a Manipulate slider control, problem when using ImageSize
  • From: Christopher Young <cy56 at comcast.net>
  • Date: Wed, 7 Dec 2011 06:16:13 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <fbj3ae$noj$1@smc.vnet.net> <jbi6j5$532$1@smc.vnet.net> <201112060814.DAA18490@smc.vnet.net> <CAEtRDSessL0mytMQcX-7r+uSYfpBC+Jzadmv-60eKrWhydTOHQ@mail.gmail.com>

Thanks very much, this is a huge help.

On Dec 6, 2011, at 9:12 AM, Bob Hanlon wrote:

> 
> {Style[Text["A", p1], opts], Style[Text["B", p2], opts],
> Style[Text["C", p3], opts]}
> 
> 
> Style[Text[#[[1]], #[[2]]], opts] & /@
> Thread[{{"A", "B", "C"}, {p1, p2, p3}}]
> 
> {Style[Text["A", p1], opts], Style[Text["B", p2], opts],
> Style[Text["C", p3], opts]}
> 
> 
> Style[Text[#[[1]], #[[2]]], opts] & /@
> {{"A", p1}, {"B", p2}, {"C",
>   p3}}
> 
> {Style[Text["A", p1], opts], Style[Text["B", p2], opts],
> Style[Text["C", p3], opts]}
> 
> 
> Style[Text[Sequence @@ #], opts] & /@
> {{"A", p1}, {"B", p2}, {"C",
>   p3}}
> 
> {Style[Text["A", p1], opts], Style[Text["B", p2], opts],
> Style[Text["C", p3], opts]}
> 
> 
> % == %% == %%% == %%%%

Chris Young
cy56 at comcast.net


  • Prev by Date: Re: Ploting a transformation of a set
  • Next by Date: Preventing unwanted threading by Inner
  • Previous by thread: Re: reducing the size of a Manipulate slider control, problem when using ImageSize
  • Next by thread: Re: reducing the size of a Manipulate slider control, problem when using ImageSize