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

[REBOL] Re: Choice limitations

From: carl::cybercraft::co::nz at: 24-Oct-2007 7:17

On Tuesday, 2-October-2007 at 10:18:32 Kai Peters wrote,
>I just tried to use a choice populated with the American states - it > displays just a fraction of >them and there does not seem to be way to get at the undisplayed ones. > >Is there a workaround for this?
For 52 items, maybe, by changing the size of choice and the size of it's font...
>> lo: layout [size 800x600 c: choice "1" 100x14 font [size: 10]] >> repeat n 51 [append c/data n + 1] view lo
The limit with choice is the size of the layout it's in, so a pop-up text-list is probably a better method for selecting from large lists. -- Carl Read