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

[REBOL] Re: How to get the index of a text-list

From: rebol:optushome:au at: 4-Oct-2002 18:34

Hi Giles, view layout [ text-list "rob" "bill" "Pierre" "robin" [ print index? find face/data value ] ] or if you prefer to separate your data block from the layout names: ["rob" "bill" "Pierre" "robin"] view layout [ text-list data names [ print index? find face/data value ] ] Cheers, Allen K