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

Record Action - Make New Document using Preset Clipboard

Community Beginner ,
Aug 10, 2025 Aug 10, 2025

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:

emmanuelc51313331_0-1754877671948.png

 

Used to be:

emmanuelc51313331_1-1754877698194.png

 

Anyway to make it records "Preset: Clipboard" again?

 

TOPICS
Actions and scripting , Windows
139
Translate
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 2 Correct answers

Community Expert , Aug 10, 2025 Aug 10, 2025

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("
...
Translate
Mentor , Aug 10, 2025 Aug 10, 2025

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.

jazzy_0-1754893353572.png

 

 
 

 

 

Translate
Adobe
Community Expert ,
Aug 10, 2025 Aug 10, 2025

@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.

Translate
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
Community Beginner ,
Aug 10, 2025 Aug 10, 2025

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? 

Translate
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
Community Expert ,
Aug 11, 2025 Aug 11, 2025
LATEST

That's my experience too in the 26.8.1 release.

Translate
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
Community Expert ,
Aug 10, 2025 Aug 10, 2025

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 

Translate
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
Mentor ,
Aug 10, 2025 Aug 10, 2025

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.

jazzy_0-1754893353572.png

 

 
 

 

 

Translate
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