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

[REBOL] dynamic faces

From: fabrice:regnier:socopa-entreprise at: 24-Dec-2001 10:40

Hi to all ! I'd like to modify the data refinement of some progress faces that i've created before. I can create dynamicaly the faces but how to change the data refinement ? Thanx in advance and Merry Christmas :) Fab here is my script : monlayout: [] i: 1 for i 1 1 2 [ append monlayout reduce [ set to-word rejoin ["progress" i ] 'progress 12x100 'button rejoin ["modif " i] [ ;set to-word rejoin [ "progress" i ] /data: 0.5 ;show to-get-word rejoin [ "progress" i ] ] ];end-append ];end-for append monlayout reduce [ 'below 'button "Source" [source monlayout] 'button "Quitter" [quit] ];end-append view layout monlayout