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

How to use "doProgress"?

Community Beginner ,
Jun 08, 2018 Jun 08, 2018

app.doProgress("Please wait","DD()")

function DD(){

    for(var i=0;i<100;i++){

// =======================================================

var idCpTL = charIDToTypeID( "CpTL" );

executeAction( idCpTL, undefined, DialogModes.NO );

}

}

////////////////////////// What was wrong ???

TOPICS
Actions and scripting
1.2K
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
Adobe
People's Champ ,
Jun 08, 2018 Jun 08, 2018

I do not use this function because it does not exist in CS6, but try this

app.doProgress("Please wait","DD()")

function DD()

    {

    for(var i=0;i<100;i++)

        {

        var idCpTL = charIDToTypeID( "CpTL" );

        executeAction( idCpTL, undefined, DialogModes.NO );

        app.updateProgress(i, 100);

        }

    }

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
Community Beginner ,
Jun 15, 2018 Jun 15, 2018
LATEST

未标题-1.jpg

OK!!!

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