質問
Help to open PDF and show only "Import PDF" dialog in Photoshop
Hello,
I want to open a .pdf file with script and doesn't show "Import PDF" dialog, it opens first page without ask.
var file = new File(filePath);
app.open(file);
I am trying to show the dialog but it always show Finder before
var file = new File(filePath);
app.displayDialogs = DialogModes.ALL;
app.open(file);
app.displayDialogs = DialogModes.ERROR;
I want to show only the dialog about pdf, not choose the file.
Someone knows a solution?
Thanks
