This little applet allows you to select a PDF (or a bunch of them) in the Finder, prints them (default shrink to fit) and then closes the file. We could always do this in OS9, but OSX took away this functionality. Many thanks to all who helped!
OS version: OS X
display dialog "Do you want to print? " buttons {"Cancel", "Ok"} default button 2 with icon 1
tell application "Finder"
activate
open selection
end tell
tell application "Acrobat 6.0.2 Professional"
print pages of every document with shrink to fit
close all docs
end tell