I'm working with a MAC.
Could someone please tell me what is wrong with this?
No matter what I put in place of doclocation, I get the error on the saveAs line:
Value is unsupported. ===> Parameter cPath.
This works in Windows, but I can't make it work on the Mac.
app.beginPriv();
.
.
.
try{
doc.saveAs(doclocation);
} catch (e) {
for (var i in e)
console.println(i + ": " + e[i]);
}
.
.
.
app.endPriv();
I have tried using a file name in quotes.
I have tried slashes in both directions.
I have tried double slashes in both directions.
I have tried saving to a /Users/Shared location and a /Documents location.
I have tried doc.saveAs({cPath: doclocation});
Can someone please point me in the right direction?
Thank you.
It's a bit bothersom that it's working in Windows. It could be path or excution context differences between the systems. Are you running this from the Console Window? Does it display the file save dialog when you do not include the path parameter? Are you trying to save to itself?
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script