I use activeDocument.saveAs() supplied with a File- and psdSaveOptions object. It works fine and silently when saving to a local hard disk.
But when the file object points to a network drive, I am greeted with a "Save As"-dialog. Any clues to why this happens?
Code: Select all
var networkFolder = new Folder("/Volumes/home/Projects/...")
networkFolder.exists // returns true
var fileObject = new File("/Volumes/home/Projects/.../myFileName.psd")
fileObject.exist // returns false (obviously, as it has not been created yet)