Skip to content

compitem

app.project.item(index)

app.project.items[index]

The CompItem object represents a composition, and allows you to manipulate and get information about it. Access the objects by position index number in a project’s item collection.

CompItem is a subclass of AVItem object, which is a subclass of Item object. All methods and attributes of AVItem and Item, in addition to those listed below, are available when working with CompItem.

Given that the first item in the project is a CompItem, the following code displays two alerts. The first shows the number of layers in the CompItem, and the second shows the name of the last layer in the CompItem.

var firstComp = app.project.item(1);
alert("number of layers is " + firstComp.numLayers);
alert("name of last layer is " + firstComp.layer(firstComp.numLayers).name);

app.project.item(index).activeCamera

The active camera, which is the front-most camera layer that is enabled. The value is null if the composition contains no enabled camera layers.

CameraLayer object; read-only.


app.project.item(index).bgColor

The background color of the composition. The three array values specify the red, green, and blue components of the color.

An array containing three floating-point values, [R, G, B], in the range [0.0..1.0]; read/write.


app.project.item(index).counters

This method/property is officially undocumented and was found via research. The information here may be inaccurate, and this whole method/property may disappear or stop working some point. Please contribute if you have more information on it!

This attribute works app-wide: if changed on one CompItem, it will change it for every CompItem in the project. The value stays until restarting AE. Once restarted, it will revert to false.

This parameter doesn’t do anything.

Boolean; read/write.


app.project.item(index).displayStartFrame

The frame value of the beginning of the composition.

This value is an alternative to calculating the start frame using CompItem.displayStartTime and CompItem.frameDuration to compensate for floating-point problems.

Integer; read/write.


app.project.item(index).displayStartTime

The time set as the beginning of the composition, in seconds. This is the equivalent of the Start Timecode or Start Frame setting in the Composition Settings dialog box.

Floating-point valuem in the range [-10800.0..86339.0] (-3:00:00:00 to 23:59:00:00); read/write.


app.project.item(index).draft3d

When true, Draft 3D mode is enabled for the Composition panel. This corresponds to the value of the Draft 3D button in the Composition panel.

Boolean; read/write.


app.project.item(index).dropFrame

When true, indicates that the composition uses drop-frame timecode. When false, indicates non-drop-frame timecode. This corresponds to the setting in the Composition Settings dialog box.

Boolean; read/write.


app.project.item(index).frameBlending

When true, frame blending is enabled for this Composition. Corresponds to the value of the Frame Blending button in the Composition panel.

Boolean; if true, frame blending is enabled; read/write.


app.project.item(index).frameDuration

The duration of a frame, in seconds. This is the inverse of the frameRate value (frames-per-second).

Floating-point value; read/write.


app.project.item(index).hideShyLayers

When true, only layers with shy set to false are shown in the Timeline panel. When false, all layers are visible, including those whose shy value is true. Corresponds to the value of the Hide All Shy Layers button in the Composition panel.

Boolean; read/write.


app.project.item(index).layers

A LayerCollection object that contains all the Layer objects for layers in this composition.

LayerCollection object; read-only.


app.project.item(index).markerProperty

A PropertyGroup object that contains all a composition’s markers. Composition marker scripting has the same functionality as Layer markers.

See MarkerValue object.

PropertyGroup object or null; read-only.

The following sample code creates a project and composition, then creates two composition markers with different properties

// comp.markerProperty allows you to add markers to a comp.
// It has the same functionality as layer.property("Marker")
var currentProj = app.newProject();
var comp = currentProj.items.addComp("mycomp", 1920, 1080, 1.0, 5, 29.97);
var solidLayer = comp.layers.addSolid([1, 1, 1], "mylayer", 1920, 1080, 1.0);
var compMarker = new MarkerValue("This is a comp marker!");
compMarker.duration = 1;
var compMarker2 = new MarkerValue("Another comp marker!");
compMarker2.duration = 1;
comp.markerProperty.setValueAtTime(1, compMarker);
comp.markerProperty.setValueAtTime(3, compMarker2);

app.project.item(index).motionBlur

When true, motion blur is enabled for the composition. Corresponds to the value of the Motion Blur button in the Composition panel.

Boolean; read/write.


app.project.item(index).motionBlurAdaptiveSampleLimit

The maximum number of motion blur samples of 2D layer motion. This corresponds to the Adaptive Sample Limit setting in the Advanced tab of the Composition Settings dialog box.

Integer (between 16 and 256); read/write.


app.project.item(index).motionBlurSamplesPerFrame

The minimum number of motion blur samples per frame for Classic 3D layers, shape layers, and certain effects. This corresponds to the Samples Per Frame setting in the Advanced tab of the Composition Settings dialog box.

Integer (between 2 and 64); read/write.


CompItem.motionGraphicsTemplateControllerCount

Section titled “CompItem.motionGraphicsTemplateControllerCount”

app.project.item(index).motionGraphicsTemplateControllerCount

The number of properties in the Essential Graphics panel for the composition.

Integer; read-only.


app.project.item(index).motionGraphicsTemplateName

Read or write the name property in the Essential Graphics panel for the composition.

The name in the Essential Graphics panel is used for the file name of an exported Motion Graphics template (ex., “My Template.mogrt”).

The following example will set the name for the active composition and then return it as an alert

app.project.activeItem.motionGraphicsTemplateName = "My Template";
alert(app.project.activeItem.motionGraphicsTemplateName);

String; read/write.


app.project.item(index).numLayers

The number of layers in the composition.

Integer; read-only.


app.project.item(index).preserveNestedFrameRate

When true, the frame rate of nested compositions is preserved in the current composition. Corresponds to the value of the “Preserve frame rate when nested or in render queue” option in the Advanced tab of the Composition Settings dialog box.

Boolean; read/write.


app.project.item(index).preserveNestedResolution

When true, the resolution of nested compositions is preserved in the current composition. Corresponds to the value of the “Preserve Resolution When Nested” option in the Advanced tab of the Composition Settings dialog box.

Boolean; read/write.


app.project.item(index).renderer

The current rendering plug-in module to be used to render this composition, as set in the Advanced tab of the Composition Settings dialog box. Allowed values are the members of CompItem.renderers.

String; read/write.


app.project.item(index).renderers

The available rendering plug-in modules. Member strings reflect installed modules, as seen in the Advanced tab of the Composition Settings dialog box.

Array of strings; read-only.


app.project.item(index).resolutionFactor

The x and y downsample resolution factors for rendering the composition. The two values in the array specify how many pixels to skip when sampling; the first number controls horizontal sampling, the second controls vertical sampling. Full resolution is [1, 1], half resolution is [2, 2], and quarter resolution is [4, 4]. The default is [1, 1].

Array of two integers in the range [1..99]; read/write.


app.project.item(index).selectedLayers

All of the selected layers in this composition. This is a 0-based array (the first object is at index 0).

Array of Layer objects; read-only.


app.project.item(index).selectedProperties

All of the selected properties (Property and PropertyGroup objects) in this composition. The first property is at index position 0.

Array of Property and PropertyGroup objects; read-only.


app.project.item(index).shutterAngle

The shutter angle setting for the composition. This corresponds to the Shutter Angle setting in the Advanced tab of the Composition Settings dialog box.

Integer, in the range [0..720]; read/write.


app.project.item(index).shutterPhase

The shutter phase setting for the composition. This corresponds to the Shutter Phase setting in the Advanced tab of the Composition Settings dialog box.

Integer, in the range [-360..360]; read/write.


app.project.item(index).workAreaDuration

The duration of the work area in seconds. This is the difference of the start-point and end-point times of the Composition work area.

Floating-point value; read/write.


app.project.item(index).workAreaStart

The time when the Composition work area begins, in seconds.

Floating-point value; read/write.


app.project.item(index).duplicate()

Creates and returns a duplicate of this composition, which contains the same layers as the original.

None.

CompItem object.


app.project.item(index).exportAsMotionGraphicsTemplate(doOverWriteFileIfExisting[, file_path])

Exports the composition as a Motion Graphics template. Returns true if the Motion Graphics template is successfully exported, otherwise false.

The name in the Essential Graphics panel is used for the file name of the Motion Graphics template (ex., “My Template.mogrt”). Use the motionGraphicsTemplateName attribute to set the name.

Optionally specify the path to the folder where the Motion Graphics template file is saved. If not specified, the file will be saved in the current user’s Motion Graphics Templates folder:

OSPath
macOS/Users/<name>/Library/Application Support/Adobe/Common/Motion Graphics Templates/
WindowsC:\Users\<name>\AppData\Roaming\Adobe\Common\Motion Graphics Templates\

If the project has been changed since the last time it was saved, After Effects will prompt the user to save the project. To avoid this, use the project save() method before exporting the Motion Graphics template.

ParameterTypeDescription
doOverWriteFileIfExistingBooleanWhether to overwrite an existing file of the same name.
file_pathStringOptional. Path to the folder where the file will be saved.

Boolean.


CompItem.getMotionGraphicsTemplateControllerName()

Section titled “CompItem.getMotionGraphicsTemplateControllerName()”

app.project.item(index).getMotionGraphicsTemplateControllerName(index)

Gets the name of a single property in the Essential Graphics panel.

ParameterTypeDescription
indexIntegerThe index of the EGP property whose name will be returned.

String; read-only.


CompItem.setMotionGraphicsControllerName()

Section titled “CompItem.setMotionGraphicsControllerName()”

app.project.item(index).setMotionGraphicsControllerName(index, newName)

Sets the name of a single property in the Essential Graphics panel.

ParameterTypeDescription
indexIntegerThe index of the EGP property to be renamed.
newNameStringThe new name for the EGP property.

String; read-only.


app.project.item(index).layer(index)

app.project.item(index).layer(otherLayer, relIndex)

app.project.item(index).layer(name)

Returns a Layer object, which can be specified by name, an index position in this layer, or an index position relative to another layer.

ParameterTypeDescription
indexInteger, in the range [1..numLayers], where numLayers is the number of layers in the compositionThe index number of the desired layer in this composition.

or:

ParameterTypeDescription
otherLayerLayer object in this composition.The relIndex value is added to the index value of this layer to find the position of the desired layer.
relIndexInteger, in the range [1 - otherLayer.index .. numLayers - otherLayer.index], where numLayers is the number of layers in the composition.The position of the desired layer, relative to otherLayer. This value is added to the otherLayer value to derive the absolute index of the layer to return.

or:

ParameterTypeDescription
nameStringThe name of the desired layer.

Layer object.


app.project.item(index).openInEssentialGraphics()

Opens the composition in the Essential Graphics panel.

None.

Nothing.


app.project.item(index).openInViewer()

Opens the composition in a Composition panel, and moves the Composition panel to front and gives it focus.

None.

Viewer object object for the Composition panel, or null if the composition could not be opened.