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

convert artboard to a group of layers

Explorer ,
Sep 01, 2025 Sep 01, 2025

Is there an easy and simple way?

jeva
TOPICS
Actions and scripting , Windows
75
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
Adobe
Community Expert ,
Sep 01, 2025 Sep 01, 2025

Layer > Ungroup Artboards

Or you can create files with:

File > Export > Artboards to files

https://www.youtube.com/watch?v=xmrJhk0x5zg&t=273s

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 ,
Sep 01, 2025 Sep 01, 2025

For extendscript:

 

var idungroupLayersEvent = stringIDToTypeID( "ungroupLayersEvent" );
    var desc241 = new ActionDescriptor();
    var idnull = charIDToTypeID( "null" );
        var ref1 = new ActionReference();
        var idLyr = charIDToTypeID( "Lyr " );
        var idOrdn = charIDToTypeID( "Ordn" );
        var idTrgt = charIDToTypeID( "Trgt" );
        ref1.putEnumerated( idLyr, idOrdn, idTrgt );
    desc241.putReference( idnull, ref1 );
executeAction( idungroupLayersEvent, desc241, DialogModes.NO );

 

Or:

 

ungroupLayersEvent();

function ungroupLayersEvent() {
	var c2t = function (s) {
		return app.charIDToTypeID(s);
	};
	var s2t = function (s) {
		return app.stringIDToTypeID(s);
	};
	var descriptor = new ActionDescriptor();
	var reference = new ActionReference();
	reference.putEnumerated( s2t( "layer" ), s2t( "ordinal" ), s2t( "targetEnum" ));
	descriptor.putReference( c2t( "null" ), reference );
	executeAction( s2t( "ungroupLayersEvent" ), descriptor, DialogModes.NO );
}

 

Or:

 

app.runMenuItem(stringIDToTypeID("ungroupLayersEvent"));
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
New Here ,
Sep 03, 2025 Sep 03, 2025
LATEST

I DONT KNOW

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