Re: Calling other OSA Scripts
Re: Calling other OSA Scripts
- Subject: Re: Calling other OSA Scripts
- From: g3pb <email@hidden>
- Date: Thu, 24 May 2001 06:57:07 -0800
tell application "MacPerl"
Do Script "
for($x=0; $x < 10; $x++) {
print \"x is $x\\n\";
}
"
end tell
tell application "MacPerl"
Do Script "iMac:Desktop Folder:test.pl" -- path to perl script file
end tell
-- hcir
mailto:email@hidden
>
Thanks but what is the syntax to call a PerlScript from an AppleScript?