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

[REBOL] Re: A better way?

From: tbrownell:l3technology at: 6-Feb-2003 14:44

Gregg, I just used the server monitor as an example of launching "forever" loops from within the main window. What I don't understand is how you can do a forever loop after doing the view/new window? Or if calling forever loops with a button from within the main window is the most efficient way of doing this. For example, "Handy Server Monitor Window" has a forever loop after the windwow call.. but the following example chokes?? rebol [] a: layout [b: box btn [print "test"] ] view/new a forever [either error? try [ read http://www.rebol.com][b/color: red show b][b/color: green show b]] ;------ Terry