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

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to