Last active
November 24, 2025 13:08
-
-
Save joonaspaakko/898394cf2b46ae7b6ad7 to your computer and use it in GitHub Desktop.
Script for photoshop that duplicates layers or groups and unlinks any possible smart objects.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://gist.github.com/joonaspaakko/898394cf2b46ae7b6ad7 | |
| #target photoshop | |
| // If there are any documents open, run the code... | |
| // ================================================= | |
| if ( app.documents.length > 0 ) { | |
| // Used later on when the layers are duplicated back to the original document. | |
| // =========================================================================== | |
| var docName = app.activeDocument.name; | |
| // Script listener code - Duplicate active group to a new document. | |
| // ================================================================= | |
| var idMk = charIDToTypeID( "Mk " ); | |
| var desc14 = new ActionDescriptor(); | |
| var idnull = charIDToTypeID( "null" ); | |
| var ref10 = new ActionReference(); | |
| var idDcmn = charIDToTypeID( "Dcmn" ); | |
| ref10.putClass( idDcmn ); | |
| desc14.putReference( idnull, ref10 ); | |
| var idUsng = charIDToTypeID( "Usng" ); | |
| var ref11 = new ActionReference(); | |
| var idLyr = charIDToTypeID( "Lyr " ); | |
| var idOrdn = charIDToTypeID( "Ordn" ); | |
| var idTrgt = charIDToTypeID( "Trgt" ); | |
| ref11.putEnumerated( idLyr, idOrdn, idTrgt ); | |
| desc14.putReference( idUsng, ref11 ); | |
| var idVrsn = charIDToTypeID( "Vrsn" ); | |
| desc14.putInteger( idVrsn, 5 ); | |
| executeAction( idMk, desc14, DialogModes.NO ); | |
| // Script listener code - Duplicate active group to the prior document. | |
| // ===================================================================== | |
| var idDplc = charIDToTypeID( "Dplc" ); | |
| var desc16 = new ActionDescriptor(); | |
| var idnull = charIDToTypeID( "null" ); | |
| var ref13 = new ActionReference(); | |
| var idLyr = charIDToTypeID( "Lyr " ); | |
| var idOrdn = charIDToTypeID( "Ordn" ); | |
| var idTrgt = charIDToTypeID( "Trgt" ); | |
| ref13.putEnumerated( idLyr, idOrdn, idTrgt ); | |
| desc16.putReference( idnull, ref13 ); | |
| var idT = charIDToTypeID( "T " ); | |
| var ref14 = new ActionReference(); | |
| var idDcmn = charIDToTypeID( "Dcmn" ); | |
| ref14.putName( idDcmn, docName ); | |
| desc16.putReference( idT, ref14 ); | |
| var idVrsn = charIDToTypeID( "Vrsn" ); | |
| desc16.putInteger( idVrsn, 5 ); | |
| executeAction( idDplc, desc16, DialogModes.NO ); | |
| // Closes the new document. | |
| // ======================================================= | |
| app.activeDocument.close( SaveOptions.DONOTSAVECHANGES ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. It saved me a lot of time and still works on 27.1.0. :)