Copy link to clipboard
Copied
Hi guys,
I'm on Photoshop CC on MacOSx.
I'm looking to run a script that I've found.
It only accept PNG.
batchLauncher.FileExtensionFilter = "png";
I wish I could use PSD as well. But the way I write it don't work.
Here all the way I've tried. Plus I've check the javascript reference book and found nothing that help.
batchLauncher.FileExtensionFilter = "png, psd";
batchLauncher.FileExtensionFilter = "*.png,*.psd";
batchLauncher.FileExtensionFilter = "Files:*.png,*.psd";
batchLauncher.FileExtensionFilter = "Files: png, psd";
or
batchLauncher.FileExtensionFilter = "psd";
batchLauncher.FileExtensionFilter = "png";
Anybody knows what I'm doing wrong ?
thanks
I solve it.
batchLauncher.FileExtensionFilter = "*";
Now I can use ANY format !
thanks to myself!
Haha
Copy link to clipboard
Copied
I solve it.
batchLauncher.FileExtensionFilter = "*";
Now I can use ANY format !
thanks to myself!
Haha