Hello!
I am writing an AppleScript that calls a MacPerl program, does some processing
and then needs to pass a value that was set in the Perl program to another Perl
program.
Here is how I'm calling the Perl program:
tell application "MacPerl"
set newPath to Do Script "Pathology:Applications:Cron
Software:ProcessPCImages1.pl"
end tell
I need to pass newPath to the next Perl program I call:
tell application "MacPerl"
Do Script "Pathology:Applications:Cron Software:ProcessPCImages2.pl"
end tell
Can you please tell me how I would do this?
Thanks,
Kathy Richmond