Calling perl exe through applescript

HI all,
I have written the table convsersion for indesign in perl.Now i need to call this perl exe through applescript. Can anyone help me out for this.

–rekkhaa

I’m no perl guy, but generally such things are solved thusly:

run shell script theScript

where theScript is the command line you would enter in Terminal. It probably starts with "perl "

with php theScript could look like this: "php -f " & quoted form of POSIX path of (choose file)

search this site for: “perl run script” and find the answer under the many perl discussions.

All you need to do is use the path the the exacutable. For instance suppose you had a python script on the desktop.

do shell script “~/Desktop/test.py”

gl,