Beenden
  • Globale Community
    • Sprache:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티

Batch generate image assets

Neu hier ,
May 25, 2018 May 25, 2018

Hi, this is my first post, I made an action that include the generate.jsx, When I run the full action it works great and generate Image assets next to the file.

The issue is when I try to run the script trough BATCH it does not generate the assets anymore, i think it loads generate script to fast and does not have time to generate the assets, is there any way to do a pause between script run?

I have over 500 files so I need to close files after script run.

I tried with $.sleep( 10000 ); but the sleep puts even generator to sleep.

Thank you!

THEMEN
Aktionen und Skripte
1.4K
Übersetzen
Melden
Community-Richtlinien
Seien Sie freundlich und respektvoll, geben Sie die ursprüngliche Quelle der Inhalte an und suchen Sie vor dem Absenden Ihres Beitrags nach Duplikaten. Weitere Informationen
community guidelines

correct answers 1 richtige Antwort

Populärer Benutzer , May 26, 2018 May 26, 2018

I think this is impossible to do. While an action or script is being executed, the generator can not be activated.

If you have windows, you can try this script.

Close all the documents in Photoshop and run the script.

Select the desired files in the FileOpenDialog.

The script will create a temporary script and bat-file in the temporary folder.

Then run bat-file. At the end of the run, you need to close the last file in Photoshop manually.

var ps_name = app.path.fsName + "\\Photoshop.exe";

var gn_name =

...
Übersetzen
Adobe
Populärer Benutzer ,
May 26, 2018 May 26, 2018

I think this is impossible to do. While an action or script is being executed, the generator can not be activated.

If you have windows, you can try this script.

Close all the documents in Photoshop and run the script.

Select the desired files in the FileOpenDialog.

The script will create a temporary script and bat-file in the temporary folder.

Then run bat-file. At the end of the run, you need to close the last file in Photoshop manually.

var ps_name = app.path.fsName + "\\Photoshop.exe";

var gn_name = app.path.fsName + "\\Presets\\Scripts\\generate.jsx";

var files = app.openDialog();

if (files)

    {

    var sc_name = Folder.temp.fsName + "\\" + "temp.jsx";

    var sc_file = new File(sc_name);

    sc_file.encoding = "UTF8";

    sc_file.open("w");

    sc_file.writeln("while (documents.length > 1) documents[0].close(SaveOptions.DONOTSAVECHANGES)");

    sc_file.writeln("$.evalFile(" + gn_name.toSource() + ")");

    sc_file.close();

    var bat_name = Folder.temp.fsName + "\\" + "temp.bat";

    var bat_file = new File(bat_name);

    bat_file.encoding = "UTF8";

    bat_file.open("w");

    for (var i = 0; i < files.length; i++)

        {

        bat_file.writeln("\"" + ps_name + "\"" + " " + "\"" + files.fsName + "\"");

        bat_file.writeln("\"" + ps_name + "\"" + " " + "\"" + sc_name + "\"");

        bat_file.writeln("timeout 3");

        }

   

    bat_file.close();

    bat_file.execute();

    }

Übersetzen
Melden
Community-Richtlinien
Seien Sie freundlich und respektvoll, geben Sie die ursprüngliche Quelle der Inhalte an und suchen Sie vor dem Absenden Ihres Beitrags nach Duplikaten. Weitere Informationen
community guidelines
Neu hier ,
May 26, 2018 May 26, 2018
AKTUELL

I'm mac user but I installed photoshop on laptop and this works great! thank you!  I had to make the timeout bigger because I have 26 images to generate.

Übersetzen
Melden
Community-Richtlinien
Seien Sie freundlich und respektvoll, geben Sie die ursprüngliche Quelle der Inhalte an und suchen Sie vor dem Absenden Ihres Beitrags nach Duplikaten. Weitere Informationen
community guidelines