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

[REBOL] 'text-list information please!

From: reboler::programmer::net at: 28-Dec-2001 4:48

What holds the data for the section of the text-list/data that is actually visible. I've "probe mold"-ed and "probe first"-ed til I'm blue in the face and can't seem to find it. I am using the following function to change the data in a text-list and everything seems okay except for what is actually show in the list. If you scroll down in a long list, then change the list, everything changes except what part of the list is currently shown. I need to move the slider to jump to the top of the list. function follows: tell-list: func [fce value][ append clear fce/data copy value clear fce/picked fce/sld/data: 0 fce/line-list: none fce/sld/redrag fce/lc / max 1 length? head fce/lines ;resets slider size show fce ]