Can someone look at this and see if they can help me out my pdf file does not open.
All I am trying to do is open and save multiple files from a selected folder.
Problem is at the open i
set SourceFolder to (choose folder with prompt "Choose")
try
tell application "Finder"
set pdf_files to (files of entire contents of SourceFolder whose file type is "pdf") as alias list
tell application "Acrobat 5.0"
activate
display dialog "here"
repeat with i in pdf_files
open i
display dialog "Need to open File and save as EPS"
save front document using EPS Conversion to file SourceFolder with binary, embedded fonts, images, preview and TrueType
close front document
end repeat
end tell
end tell
on error err
display dialog err
end try