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

[REBOL] stylize / feel question

From: atruter::hih::com::au at: 28-Mar-2002 10:02

Given the following code, why does print-field return different results? How can I ensure that "B" is returned in both cases? stylize/master [ box2: box with [ field1: "A" print-field: does [print field1] feel: make feel [ engage: func [face action event] [ if action = 'down [print-field] ] ] ] ] view layout [ text "Click on box to print field" text "Click on button to print same field" a: box2 red button "Print" [a/print-field] do [a/field1: "B"] ] Regards, Ashley