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

[REBOL] Help on View

From: luca:krenet:it at: 20-Aug-2001 9:41

Can someone explain me the reason of a strange behavior? The following code doesn't clean the "area" field. Just press "valorize" and then "clean". Thanks. REBOL [ ] Preview-form: layout [ button 150x24 "valorize" [valorize] testo: area "testo" 700x200 wrap below button "clean" [clear testo/text show testo] ] valorize: func[] [ testo/text: {<titolo>12234567891 asdfg, asdfghjk - aswedfrtg azxcdftre dsr gjftptyf <p> lkdjflkdsjflkdsjflkdsjflks flkdsjflkds flkjdslkfjdslkf lkdsj flkdslkfj dslkfjdslkj flkds fkds flkslk fjdslkjflkds flkdj fklsd } show testo ] view/title Preview-form "Test"