One possibility is to redefine 'print before the call:
saved-print: get in system/words 'print
print: func [data][]
----code here to call other script-----
set in system/words 'print :saved-printYou may also need to use the same trick on 'prin and 'probe. The replacement function could do something other than discard the output -- for example, it could write it to a log file. Sunanda -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
