scripting postscript creation problem

using ui scripting, i’m trying to print postscript files to the folder distiller watches, then distiller will process them.

although no error is returned, all the script actually does is call the print window and hit return, so the job is sent to the printer to print a hard copy.

any help to get it to do what it should would be appreciated.

the code

tell application “Acrobat 5.0”
activate
end tell
tell application “System Events”
tell process “Acrobat 5.0”
tell menu bar 1 – menu bar
tell menu “File” – menu
click menu item “Print…” – menu item
delay 1
tell window “Print”
tell pop up button 1
tell menu 1
click menu item “Output Options”
delay 1
tell window “Print”
click radio button “Save as File”
tell pop up button 2
click
delay 1
tell menu 1
click menu item “PostScript”
delay 1
keystroke return
tell window “Save to File”
tell pop up button 1
tell menu 1
click menu item " distiller watched folder"
delay 1
keystroke return
end tell
end tell
end tell
end tell
end tell
end tell
end tell
end tell
end tell
end tell
end tell
end tell
end tell

bump