in reply to Re^2: Calling another script from Perl/Tk
in thread Calling another script from Perl/Tk

You must be really new to perl. SCRIPT in this case is a filehandle, not a scalar or array. You should be able to do something like
open SCRIPT, "otherScript.pl |" or die "script failed: $!"; while (<SCRIPT>) { $resultsBox->insert('end', $_); } close SCRIPT;