Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: VID : Choice gadget probleme

From: carl:cybercraft at: 9-Feb-2002 0:24

On 08-Feb-02, Stéphane Didierjean wrote:
> hi, > I have a problem with my choice gadget. > I have more than 47 elements in that gadget and I can > only see 30 of it. How can I add a slider or something > to select the other one ? Is it possible ? Is it a bug > ?
I don't know how you'd add a slider, but the restriction is caused by the height of the window the choice gadget is in. Two possible solutions are to deepen the height of the window or (perhaps better) to use a smaller font for the choice gadget. Example... view layout [ size 200x80 across choice "A" "B" "C" "D" "E" 40x22 font [size: 20] choice "A" "B" "C" "D" "E" 40x14 font [size: 12] ]
> Thanks > Stephane > PS : Is someone have a doc about all the VID gadget > attributs ?
See EasyVID and EasyDraw in RT's rebsite docs section - ie, use the View Desktop to get at them. Also, this old View users guide (to a beta version) might be of use... http://www.rebolforces.com/archive/view099users.html -- Carl Read