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

20 Flash Panel Extension Limit

Advisor ,
Feb 26, 2016 Feb 26, 2016

Copy link to clipboard

Copied

Hi, whether creating prototype scripts or installing a HTML Photoshop Script for PsCC-2015.1.2 since I have over twenty extensions for which I use installed; I get the error that there is a 20 flash panel extension limit and I can't install anymore ? I've tried changing autovisible in the manifest file from "true" to "false", that was unsuccessful.

I'm at a loss, don't tell me no one has 20 extensions installed and I'm the only one experiencing this problem

If so I can't install any other extension when working in Photoshop.

The only time a new extension works is when Photoshop loads; and in the recent version there is a open files panel, anyone with 2015.1.2 knows what I'm talking about, and there I don't see any of my other extensions, but I do see the newest extension installed, when I open a file from 2015.1.2 open file dialog and the other extensions load, the latest extension for which I installed, fires the 20 Flash Panel Extension limit, when I try to run it from Windows > Extension

TOPICS
Actions and scripting

Views

1.4K

Translate

Translate

Report

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

Adobe Employee , Mar 01, 2016 Mar 01, 2016

Try this script to change the max value:

$.localize = true;

var countKey = stringIDToTypeID("count");

var flashCount = 10;

try {

  var d = app.getCustomOptions("flashMaxOpenOrRunning");

  if (d.hasKey(countKey)) {

  flashCount = d.getInteger(countKey);

  }

}

catch(e) { } // do nothing, must not have that option

var msg = localize("$$$/JavaScript/MaxOpenOrRunningMessage=Current max panel count:")

var newCount = prompt(msg, flashCount);

if (newCount != null) {

  var d = new ActionDescriptor();

  d.putInteger(cou

...

Votes

Translate

Translate
Adobe
Adobe Employee ,
Mar 01, 2016 Mar 01, 2016

Copy link to clipboard

Copied

Try this script to change the max value:

$.localize = true;

var countKey = stringIDToTypeID("count");

var flashCount = 10;

try {

  var d = app.getCustomOptions("flashMaxOpenOrRunning");

  if (d.hasKey(countKey)) {

  flashCount = d.getInteger(countKey);

  }

}

catch(e) { } // do nothing, must not have that option

var msg = localize("$$$/JavaScript/MaxOpenOrRunningMessage=Current max panel count:")

var newCount = prompt(msg, flashCount);

if (newCount != null) {

  var d = new ActionDescriptor();

  d.putInteger(countKey, Number(newCount));

  app.putCustomOptions("flashMaxOpenOrRunning", d);

}

Votes

Translate

Translate

Report

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
Advisor ,
Mar 01, 2016 Mar 01, 2016

Copy link to clipboard

Copied

Thanks it worked.

Is this script constructed by the PsDOM ?

Votes

Translate

Translate

Report

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 Employee ,
Mar 04, 2016 Mar 04, 2016

Copy link to clipboard

Copied

Yes. This is the PS DOM.

Votes

Translate

Translate

Report

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
New Here ,
Jun 16, 2018 Jun 16, 2018

Copy link to clipboard

Copied

Where do you paste this code to allow photoshop to load more than 20 extensions?

Votes

Translate

Translate

Report

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
Advisor ,
Jun 21, 2018 Jun 21, 2018

Copy link to clipboard

Copied

Create a JSX file and load it as a script, followed by running the script.

Votes

Translate

Translate

Report

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
New Here ,
Sep 27, 2020 Sep 27, 2020

Copy link to clipboard

Copied

LATEST

Hi, I know this post is old but I was hoping someone could help clarify why I'm getting this error?

I've made the jsx file and use scripts>browse to import the script.

 

MAC Osx 10.15.6 Catalina

Latest Photoshop

 

Screen Shot 2020-09-27 at 3.52.53 PM.png

Votes

Translate

Translate

Report

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