skip to Main Content

I am trying to disable the pop up warning message for one particular action . Basically that action is subtracting the transparency channel of all the layer from one base layer .I have to click enter to move on to the next step even after I automate the batch action . I have no knowledge on coding . Any ideas where I can study/ get help to avoid these pop ups using scripting. Thank you in advance

I tried googling where I can get atleast the code alone to attack to the action .I know without knowing scripting knowledge this would be a mess but I need to atleast get this as I have to do this on daily basis for atleast 100 images .

2

Answers


  1. At the bottom of the Actions Palette there’s a tick and icon that looks like a rectangle with a line at the top. Click that off and it’ll affect the whole action and switch off any annoying dialogue boxes.

    Or have

    // Switch off any dialog boxes
    displayDialogs = DialogModes.NO; // OFF
    

    at the start of your script.

    action toggle dialogue off

    Login or Signup to reply.
  2. I have only found 1 way.. when you PLAY the action and the pop-up says Continue or Stop…. press ENTER and don’t let go!!! All the following steps will run to the end. You will see it happening in the Actions panel. If you don’t like the end result you can REVERT, then press ENTER again but let go earlier if you see better results you are happy with.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search