Distiller problem
Distiller problem
- Subject: Distiller problem
- From: Dieter May <email@hidden>
- Date: Sun, 23 May 2004 11:28:47 +0200
This folder action script works well on 10.2 but is ten times slower in
10.3.
Did someone make the same experience?
--I dont like the "in" and "out" folders of Distiller
property PDF_Settings : "/Users/Shared/Adobe PDF
6.0/Settings/PDFX3.joboptions"
property KeepPS : false
on adding folder items to this_folder after receiving these_items
repeat with i from 1 to number of items in these_items
set this_item to item i of these_items
set PosixFile to (POSIX path of this_item)
if (this_item as text) ends with ".ps" then
tell application "Distiller"
Distill adobePDFSettingsPath ,
PDF_Settings sourcePath PosixFile
set s to the result
end tell
if KeepPS is false and s is true then
set theCommand to "/bin/rm -f " & ,
(quoted form of (POSIX path of this_item))
do shell script theCommand
end if
end if
end repeat
end adding folder items to
--Dieter
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.