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

[REBOL] Re: change text of button...

From: djo:wanadoo at: 29-Jun-2003 8:33

Le Samedi 28 Juin 2003 22:00, vous avez écrit :
> Hi > > i am a newbie in Rebol... and in english ! Sorry ! > > Is it possible to change the text of a button during execution ? for > example, i load a file which contains the text and i would write this text > in a button... >
Thanks for Gregg and Carl.... But i have make a test : view layout [ button "GAG" [face/text: "aaa" show face] ;not correct b: button "PUB" [b/text: "new" show b] ;not correct button "CCC" [b/texts: ["BBB"] show b] ;CORRECT button "DDD" [b/texts: ["new" "more"] show b] ;CORRECT button "EEE" [e/texts: ["new" "more"] show e] ;not correct e: rotary "RRR" "SSS" [] button "FFF" [f/texts: ["new 111" "more 222"] show f] ;CORRECT f: toggle "111" "222" [] ] Is it something for rotary ? Thanks A+ DJO