Skip to main content
Participant
December 16, 2022
해결됨

How to stop "Pantone Colors May No Longer Be Available...." popup

  • December 16, 2022
  • 3 답변들
  • 5235 조회

Is there any way to dismiss this popup from happening every time I open a file? I get it. Pantone got greedy and things are changing. But I don't need to see the same message 50x a day. It's completely unnecessary and annoying. 

 

 

이 주제는 답변이 닫혔습니다.
최고의 답변: Stephen Marsh

As a last (first?) resort, the following script can be used to open a file while ignoring dialogs:

 

var savedDisplayDialogs = app.displayDialogs;
app.displayDialogs = DialogModes.NO;
var fileOrFiles = File.openDialog("Select the file/s to open (ignoring warnings):", Multiselect = true);
for (var i = 0; i < fileOrFiles.length; i++) {
    var openFiles = app.open(File(fileOrFiles[i]));
}
app.displayDialogs = savedDisplayDialogs;

 

Once installed, the script could have a custom keyboard shortcut applied via Edit > Keyboard Shortcuts. You could replace the standard CMD/CTRL + O shortcut by assigning it to the installed script.

 

https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html

 

3 답변

Stephen Marsh
Community Expert
Community Expert
December 16, 2022

As a last (first?) resort, the following script can be used to open a file while ignoring dialogs:

 

var savedDisplayDialogs = app.displayDialogs;
app.displayDialogs = DialogModes.NO;
var fileOrFiles = File.openDialog("Select the file/s to open (ignoring warnings):", Multiselect = true);
for (var i = 0; i < fileOrFiles.length; i++) {
    var openFiles = app.open(File(fileOrFiles[i]));
}
app.displayDialogs = savedDisplayDialogs;

 

Once installed, the script could have a custom keyboard shortcut applied via Edit > Keyboard Shortcuts. You could replace the standard CMD/CTRL + O shortcut by assigning it to the installed script.

 

https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html

 

Stephen Marsh
Community Expert
Community Expert
December 16, 2022

@Sarah25149933z35g – Annoying, yes. I’m not sure if it is unnecessary, the alternative of ignoring this isn't that great either.

 

Once a legacy file has had the association of each spot channel changed from referencing an unavailable colour book to using picker Lab values, the message would no longer be triggered. 

 

Edit: More here –

 

https://prepression.blogspot.com/2022/12/photoshop-2022-pantone-color-book.html

 

J E L
Community Expert
Community Expert
December 16, 2022

Hi @Sarah25149933z35g Have you tried clicking on “Reset All Warning Dialogs” under the Preferences > General tab? Let us know if that stops it permanently for you (I'm on Windows 10, Photoshop 24.0.1 Release).

 

Matthew Vecera
Known Participant
December 21, 2023

That only works on dialog boxes that can be dismissed.  This dialog box does not have a checkbox that says, "check this to stop this thingy."  It only says CLOSE and LEARN MORE.  Nothing you do makes it go away.  Image processing srcripts that open hundreds of files, get HUNDREDS of popups!

Matthew Vecera
Known Participant
December 21, 2023
quote
I don't own it, and I'm not that talented!It is the Image Processor Pro script - and it is WAY, WAY too sophisticated for me.https://sourceforge.net/projects/ps-scripts/files/Image%20Processor%20Pro/v3_2%20betas/MATTHEW VECERA
By @Matthew Vecera


That is a complex script!


I'll see iwhat happens when I bash my head against it...

 


I would deeply appreciate any effort you spend on it! THANK YOU!!!


MATTHEW VECERA