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

[REBOL] switching between edit and non edit gadget

From: sdidierjean:yah:oo at: 28-Mar-2002 10:49

Hello, I have already post for switching between field and info and Brett Handley told me the solution at the end of this mail. But how can I do the same thing for button choice or other gadget ? I also don't understand how this "ctx-text" "swipe" and "svvc" work, does anyone have a documentation about this ? What I want to do is only a simple application where you can visualize informations and modify them by clicking on a button. If someone have a simple example of this type of thing I will be gratful. thanks view layout [ across label "enabled: " check true [ either value [ fld/feel: ctx-text/edit fld/color: svvc/field ] [ fld/feel: ctx-text/swipe fld/color: 180.180.180 ] show fld/parent-face ] return fld: field "Sample text" ]