Acrobat 8 Save to not working

Folks-

In Acrobat 7.0 the following code works, but in 8.13 it doesn’t. Any clues?

thanks,

Ralph

From the 8.x dictionary

[i]save reference ¬
to file ¬
using reference ¬
linearize boolean

to optional file An “alias” or “file” path of the new document (Save As…).
[/i]

Change your code to the below and it should work.

tell application "Adobe Acrobat Professional"
    save document 1 to file "MrComputer:Users:a351958:Desktop:test.pdf"
end tell

Thanks James!