Printing PDF

I’m trying to write a script that takes a group of selected files, opens them in acrobat and then prints them. This is my first scripting attempt. I have it working up to the point where it prints. If I just tell it to print the current file then the dialog box comes up in acrobat and stops the process. I can’t seem to figure out a way to tell it to just print with default or current settings. There are all kinds of parameters that the acrobat dictionary lists for setting in the dialog box, but I don’t know how to tell it to hit “ok” in the dialog box. this is the part of the script that I’m having problems with:

open file (current_file as string)
print (current_file as string)
close (current_file as string) saving no

Thanks in advance!