Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Multiple extension options ? Not working...

Explorer ,
Mar 15, 2018 Mar 15, 2018

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

TOPICS
Actions and scripting
620
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Mar 15, 2018 Mar 15, 2018

I solve it.

batchLauncher.FileExtensionFilter = "*";

Now I can use ANY format !

thanks to myself!

Haha

Translate
Adobe
Explorer ,
Mar 15, 2018 Mar 15, 2018
LATEST

I solve it.

batchLauncher.FileExtensionFilter = "*";

Now I can use ANY format !

thanks to myself!

Haha

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines