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

[REBOL] Re: radio button

From: rotenca:telvia:it at: 21-Sep-2002 16:35

> i generate a script in dyn the data inside are not the same each time the > file is created. so in this file i generated radio buttons whitch are like > that : > r1: radio of 'groupe1 text "INFO DYN1" > r1: radio of 'groupe1 text "INFO DYN2" > rn : radio of 'groupe1 text "INFO DYNn"
Every face (like a radio) added to a window is appended to the block window/pane. The group is in the field 'related of the radio face. The variable name is in the field 'var of the radio face.
>> w: layout [r1: radio of 'groupe1 r2: radio of 'groupe1 r3: radio of
'groupe1]
>> foreach x w/pane [print [x/var x/related]]
r1 groupe1 r2 groupe1 r3 groupe1 --- Ciao Romano