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

[REBOL] Text-list heartache

From: sanghabum:aol at: 15-Jun-2001 7:57

Could someone put me out of my misery here? I'm trying to reset a VID text-list: i.e. --no items picked; --the list rescrolled to the top; --the slider reset to the top. I can achieve the first two (with the help of /picked and /sn) but the third eludes me. Example: MyList: copy [] loop 50 [append MyList length? Mylist] unview/all view layout [MyBox: text-list data Mylist button "Reset" [clear myBox/picked MyBox/sn: 0 Show MyBox ] ; button action ] ;layout Thanks, Colin.