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

[REBOL] VID questions 2

From: robert:muench:robertmuench at: 26-May-2001 10:43

Hi, here are some more VID questions I have: 1. How can I update the picked line of a text-list? I don't want to update the whole list, just the picked line. 2. Here is a none VID question: I have a list of objects which have several variables. I would like to search for an object having a specific value in a given variable. Something like: obj1: make object! [a: b: c: ""] obj2: obj3: make obj1 [] mylist: make list! [obj1 obj2 obj3] find mylist/obj?/a "test" Will return the object from the list, which has the value "test" stored in the variable 'a Is there a way to do this, without writing an own iterator? Robert