Copy link to clipboard
Copied
Everytime I open .psd or .tiff -files this [cursing removed] appears..
I recently got told that I may be the only one within my company who has this issue.
I looked at all the settings in Ps and Bridge and havent found nothing.
I'm welcome to all ideas! (:
Copy link to clipboard
Copied
It's not possible to turn it off.
To use Pantone colors in your documents, you will need to download and install the Pantone Connect plug-in:
You will also need a Pantone Connect subscription. Please refer to Pantone's Pantone Connect X Adobe FAQ for additional information.
Copy link to clipboard
Copied
thanks for the reply but Im fine so far :3
Copy link to clipboard
Copied
I'm welcome to all ideas! (:
By @Medienazubi126997956bb0y
The following script can be used to open a file while ignoring dialogs (rather than using the standard open command):
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
Copy link to clipboard
Copied
hey thanks for the reply
unfortunately bridge said that it wasnt valid /:
Copy link to clipboard
Copied
hey thanks for the reply
unfortunately bridge said that it wasnt valid /:
By @Medienazubi126997956bb0y
It's a Photoshop script to open files from Photoshop.
Copy link to clipboard
Copied
You can drag the old Pantone acb files from a previous version of Photoshop (perhaps from one of your co-workers) into the Photoshop 2024 > Presets > Color Books. If that's what the files you are getting have, it will be enough to suppress the pop-up.
Checked it on an old psd with a coated Pantone swatch and it does work. Can't garantee that if the swatches are from Pantone Connect.