Previous | Next | (P-PDF) Mac Issues
Topic: saveAs(cPath) issue - (Mac issue?)
Conf: (P-PDF) Mac Issues, Msg: 164503
From: EdGioja
Date: 2/12/2008 03:04 PM
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.
try{
doc.saveAs(doclocation);
} catch (e) {
for (var i in e)
console.println(i + ": " + e[i]);
}
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.