I’ve tried everything I know and searched my applecsript book and the net and have been unable to find resolve. Please help me, I’m new to applescript and dispite managing to make a few scripts work this one bit of code simply beats be dead.
I want to send a bunch of PDF’s to print changing the print settings (paper size, paper orientation, target printer, copies, printer settings (double sided, paper tray, ect.)) according to the document in hand. I just want to be able to access the properties of the print command as listed in the ‘System Events’ dictionary.
– code getting list of files for ‘folder_list’
tell application “Acrobat 6.0.2 Professional”
repeat with i in folder_list
set the_file to (folder_path & i) as string
open the_file
activate
set the_alias to the_file as alias
print the_alias with properties {copies:3, collated:false} -- THIS IS THE BIT THAT I CANT GET TO WORK
end repeat
end tell
Please help me