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

[REBOL] Re: Can a script run another script?

From: greggirwin:mindspring at: 14-Dec-2001 10:46

Hi Alan, << Can I run a script from a REBOL/View face? So far I can launch the new script, but the old face/script closes. I would like to pick a new script from a directory listing and run it, while keeping the old one open. Can REBOL/View do this? Or do I need View/Pro or Command? >> You can use 'do, to run another script from within your script. do %feedback.r You can use 'launch to start a new interpreter process launch "feedback.r" - or- launch %feedback.r To launch a program other than REBOL, you need to use 'call in /View-Pro or /Command. HTH! --Gregg