Copy link to clipboard
Copied
In the new photoshop (version 26.9.0), I am no longer able to record an action with making a new document using preset "Clipboard". Photoshop now records the exact dimensions instead of the clipboard preset.
Now:
Used to be:
Anyway to make it records "Preset: Clipboard" again?
If there is no solution in actions, you could script the step, perhaps that isn't broken:
#target photoshop
try {
// New Doc from Clipboard - Courtesy of the late Michael L. Hale
var desc = new ActionDescriptor();
var desc1 = new ActionDescriptor();
desc1.putString(stringIDToTypeID("preset"), "Clipboard");
desc.putObject(charIDToTypeID("
...
26.9.0 Everything ok
When recording an action, do not change options in the document creation window. As soon as you change at least one value, the window will switch from clipboard mode to custom and will be recorded exactly as on your screenshot.
Copy link to clipboard
Copied
@emmanuelc51313331 I hate to say it but you are absolutely correct a change in behavior in a recent versions of Photoshop. When you record an action to create a new document using the "Clipboard" preset, Photoshop now records the specific pixel dimensions of the item on the clipboard at the time of recording, rather than the dynamic Clipboard preset itself.
Copy link to clipboard
Copied
Alright thanks, so it is not me haha. Do you know if it's a bug that I should report or it is Adobe's intention of how it should work?
Copy link to clipboard
Copied
That's my experience too in the 26.8.1 release.
Copy link to clipboard
Copied
If there is no solution in actions, you could script the step, perhaps that isn't broken:
#target photoshop
try {
// New Doc from Clipboard - Courtesy of the late Michael L. Hale
var desc = new ActionDescriptor();
var desc1 = new ActionDescriptor();
desc1.putString(stringIDToTypeID("preset"), "Clipboard");
desc.putObject(charIDToTypeID("Nw "), charIDToTypeID("Dcmn"), desc1);
executeAction(charIDToTypeID("Mk "), desc, DialogModes.NO);
} catch (error) {
alert("The clipboard is empty or does not have suitable content to create a new document!");
}
https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html
Copy link to clipboard
Copied
26.9.0 Everything ok
When recording an action, do not change options in the document creation window. As soon as you change at least one value, the window will switch from clipboard mode to custom and will be recorded exactly as on your screenshot.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now