Acrobat 9.3.3 and Save command failure

Anyone know how to make this code work?

tell application "Adobe Acrobat Pro"
	activate
	tell document 1
		save to file nameFile
	end tell
end tell

It returns an error indicating that “document 1 doesn’t understand the save command”.

This version also fails.

tell application "Adobe Acrobat Pro"
	activate
	save document 1 to file nameFile
end tell

Browser: Safari 533.16
Operating System: Mac OS X (10.6)

I solved my own problem. Here is the solution if anyone is interested…

Convert the path to a POSIX path and it works just fine.

set pathToSave to ((path to desktop folder as string) & "name.ps")
tell application "Finder"
	set pathToSavePOSIX to POSIX path of pathToSave
end tell
tell application "Adobe Acrobat Pro"
	activate
	save document 1 to POSIX file pathToSavePOSIX with PostScript Conversion
end tell