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

test panel in REBOL/View

 [1/8] from: rphilipp:suffolk:lib:ny:us at: 17-Jan-2001 11:20


Okay, I give up. How do you get back to the test panel in REBOL/View from the console mode? What's the command? Help Robert P.

 [2/8] from: gjones05:mail:orion at: 17-Jan-2001 11:31


> Okay, I give up. How do you get back to the test panel in REBOL/View from > the console mode? What's the command?
demo is the command

 [3/8] from: petr:krenzelok:trz:cz at: 17-Jan-2001 18:40


----- Original Message ----- From: Robert Philippe <[rphilipp--suffolk--lib--ny--us]> To: <[rebol-list--rebol--com]> Sent: Wednesday, January 17, 2001 5:20 PM Subject: [REBOL] test panel in REBOL/View
> Okay, I give up. How do you get back to the test panel in REBOL/View from > the console mode? What's the command?
demo :-)) Cheers, -pekr-

 [4/8] from: larry:ecotope at: 17-Jan-2001 9:47


Hi Robert I use this function which I define in my user.r. It lets you start the test panel regardless of whether demo-init has been previously run. test-panel: does [ if not value? 'demo-object [do demo-init] demo-object/startup: true demo-object/rebrowse ] If you prefer to start in console mode just put start-view?: false in your user.r HTH -Larry

 [5/8] from: rphilipp:suffolk:lib:ny:us at: 17-Jan-2001 21:11


Thanks all. Its difficult for me trying to learn REBOL/View with REBOL/Core books. Robert P.

 [6/8] from: rphilipp:suffolk:lib:ny:us at: 17-Jan-2001 21:52


Thanks Larry, The << start-up?: false >> is very useful. I installed your test-panel function in my user.r file but I don't see what it does compared to running the "demo" or "start-view" functions? Robert P.

 [7/8] from: larry:ecotope at: 17-Jan-2001 20:21


Hi Robert It is basically the same. IIRC when I first wrote it, the DEMO function was not available or not documented. These test-panel (which was originally called demo) start-up functions changed thru several different builds of View. -Larry

 [8/8] from: rphilipp::suffolk::lib::ny::us at: 18-Jan-2001 8:33


Thanks Larry, Robert P.