Hi Hal, welcome to Apple Discussions. While Automator has a
Combine PDF Pages action it lacks a
Convert RTF to PDF action. Not to worry, we can write one ourselves fairly painlessly using Automator's
Run AppleScript action. Here's the code you'll need:
click here to
open this script in your editor
<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">on run {input, parameters}
set pdf_items to {}
repeat with x in input
POSIX path of x
set {rtf_input, pdf_output} to {quoted form of result, result & ".pdf"}
do shell script "/System/Library/Printers/Libraries/convert -f " & rtf_input & " -o " & quoted form of pdf_output & " -j \"application/pdf\""
set end of pdf_items to pdf_output as POSIX file as alias
end repeat
return pdf_items
end run</pre>
...and here is what your workflow might look like:
PowerMac G5 (June 2004) 2x1.8GHz 1.25GB, PowerBook G4 (12-inch DVI) 1x1GHz 768MB Mac OS X (10.4.3)