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

[REBOL] Re: output to a field in view?

From: carl::cybercraft::co::nz at: 24-Dec-2003 22:24

On 22-Jul-03, bryan wrote:
> How does one output to a field in view? > So that I could have > button "write to field" [write-to-field "hi field"]
This what you mean? ... view layout [ f: field button "Write" [ append f/text "Hi Field " show f ] ] -- Carl Read