Sequence object
Sequence object
Section titled “Sequence object”app.project.sequences[index]
Description
Section titled “Description”The Sequence object represents sequences of media, or ‘timelines’, in Premiere Pro.
Attributes
Section titled “Attributes”Sequence.audioDisplayFormat
Section titled “Sequence.audioDisplayFormat”app.project.sequences[index].audioDisplayFormat
Description
Section titled “Description”The audio display format of the sequence.
Set this attribute with the Sequence.setSettings() method.
An enumerated value; read/write. One of:
200- Audio Samples201- Milliseconds
Sequence.audioTracks
Section titled “Sequence.audioTracks”app.project.sequences[index].audioTracks
Description
Section titled “Description”An array of audio Track objects in the sequence.
TrackCollection object; read-only.
Sequence.end
Section titled “Sequence.end”app.project.sequences[index].end
Description
Section titled “Description”The time, in ticks, of the end of the sequence.
String; read-only.
Sequence.frameSizeHorizontal
Section titled “Sequence.frameSizeHorizontal”app.project.sequences[index].frameSizeHorizontal
Description
Section titled “Description”The horizontal frame size, or width, of the sequence.
Set this attribute with the Sequence.setSettings() method.
Integer; read-only.
Sequence.frameSizeVertical
Section titled “Sequence.frameSizeVertical”app.project.sequences[index].frameSizeVertical
Description
Section titled “Description”The vertical frame size, or height, of the sequence.
Set this attribute with the Sequence.setSettings() method.
Integer; read-only.
Sequence.id
Section titled “Sequence.id”app.project.sequences[index].id
Description
Section titled “Description”This is the ordinal assigned to the sequence upon creation.
If this is the thirty-third sequence created within the project during a given Premiere Pro session, this value will be 33.
Integer, read-only.
Sequence.markers
Section titled “Sequence.markers”app.project.sequences[index].markers
Description
Section titled “Description”An array of Marker objects in the sequence.
MarkerCollection object, read-only;
Sequence.name
Section titled “Sequence.name”app.project.sequences[index].name
Description
Section titled “Description”The name of the sequence.
String; read/write.
Sequence.projectItem
Section titled “Sequence.projectItem”app.project.sequences[index].projectItem
Description
Section titled “Description”The ProjectItem object associated with the sequence.
ProjectItem object; read-only.
Sequence.sequenceID
Section titled “Sequence.sequenceID”app.project.sequences[index].sequenceID
Description
Section titled “Description”The unique identifier assigned to this sequence, at the time of its creation, in the form of xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
String; read-only.
Sequence.timebase
Section titled “Sequence.timebase”app.project.sequences[index].timebase
Description
Section titled “Description”The number of ticks per frame in the sequence. Converted to seconds, this is commonly referred to as the frame duration of the sequence.
String; read-only.
Sequence.videoDisplayFormat
Section titled “Sequence.videoDisplayFormat”app.project.sequences[index].videoDisplayFormat
Description
Section titled “Description”The video display format of the sequence.
Set this attribute with the Sequence.setSettings() method.
An enumerated value; read/write. One of:
100- 24 Timecode101- 25 Timecode102- 29.97 Drop Timecode103- 29.97 Non-Drop Timecode104- 30 Timecode105- 50 Timecode106- 59.94 Drop Timecode107- 59.94 Non-Drop Timecode108- 60 Timecode109- Frames110- 23.976 Timecode111- 16mm Feet + Frames112- 35mm Feet + Frames113- 48 Timecode
Sequence.videoTracks
Section titled “Sequence.videoTracks”app.project.sequences[index].videoTracks
Description
Section titled “Description”An array of video Track objects in the sequence.
TrackCollection object; read-only.
Sequence.zeroPoint
Section titled “Sequence.zeroPoint”app.project.sequences[index].zeroPoint
Description
Section titled “Description”The starting time, in ticks, of the sequence.
Set this attribute with the Sequence.setZeroPoint() method.
String; read-only.
Methods
Section titled “Methods”Sequence.attachCustomProperty()
Section titled “Sequence.attachCustomProperty()”app.project.sequences[index].attachCustomProperty(propertyID, propertyValue)
Description
Section titled “Description”Attaches a custom property, and its value, to the sequence. This property is visible if/when the sequence is exported to FCP XML.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
propertyID | String | ID of custom property. |
propertyValue | String | Value of custom property. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.autoReframeSequence()
Section titled “Sequence.autoReframeSequence()”app.project.sequences[index].autoReframeSequence(numerator, denominator, motionPreset, newName, useNestedSequences)
Description
Section titled “Description”Generates a new, auto-reframed sequence.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
numerator | Integer | Numerator of desired frame aspect ratio. |
denominator | Integer | Denominator of desired frame aspect ratio. |
motionPreset | String | One of: |
- slower | ||
- default | ||
- faster | ||
newName | String | A name for a newly created sequence. |
useNestedSequences | Boolean | Whether to honor nested sequence. |
Returns
Section titled “Returns”The new Sequence object.
Example
Section titled “Example”var sequence = app.project.activeSequence;if (sequence) { var numerator = 1; var denominator = 1; var motionPreset = 'default'; // 'default', 'faster', 'slower' var newName = sequence.name + ', auto-reframed.'; var useNestedSequences = false;
var newSequence = sequence.autoReframeSequence(numerator, denominator, motionPreset, newName, useNestedSequences);
if (newSequence) { alert('Created reframed sequence: ' + newName + '.'); } else { alert('Failed to create re-framed sequence: ' + newName + '.'); }} else { alert('No active sequence');}Sequence.clone()
Section titled “Sequence.clone()”app.project.sequences[index].clone()
Description
Section titled “Description”Creates a clone, or a duplicate, of the sequence.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Boolean; true if successful.
Sequence.close()
Section titled “Sequence.close()”app.project.sequences[index].close()
Description
Section titled “Description”Closes the sequence.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Boolean; true if successful.
Sequence.createCaptionTrack()
Section titled “Sequence.createCaptionTrack()”app.project.sequences[index].createCaptionTrack(projectItem, startAtTime, [captionFormat])
Description
Section titled “Description”Creates a caption track in the sequence using caption data from a ProjectItem object.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
projectItem | ProjectItem object | A captions source clip (e.g. .srt) |
startAtTime | Float | Offset in seconds from start of sequence |
captionFormat | Sequence.CAPTION_FORMAT_ enum | Caption format of the new track. Optional, default is Sequence.CAPTION_FORMAT_SUBTITLE. One of: |
- Sequence.CAPTION_FORMAT_SUBTITLE - Subtitle | ||
- Sequence.CAPTION_FORMAT_608 - CEA-608 | ||
- Sequence.CAPTION_FORMAT_708 - CEA-708 | ||
- Sequence.CAPTION_FORMAT_TELETEXT - Teletext | ||
- Sequence.CAPTION_FORMAT_OPEN_EBU - EBU Subtitle | ||
- Sequence.CAPTION_FORMAT_OP42 - OP-42 | ||
- Sequence.CAPTION_FORMAT_OP47 - OP-47 |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Example
Section titled “Example”app.project.activeSequence.createCaptionTrack(projectItem, 0, Sequence.CAPTION_FORMAT_708);Sequence.createSubsequence()
Section titled “Sequence.createSubsequence()”app.project.sequences[index].createSubsequence([ignoreTrackTargeting])
Description
Section titled “Description”Creates a new sequence, from the in point to the out point, which is a sub-sequence of the original sequence.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
ignoreTrackTargeting | Boolean | Whether the new sequence should ignore the track targeting, in the original sequence. Optional, default is false |
Returns
Section titled “Returns”Returns the newly-created Sequence object.
Example
Section titled “Example”function nestSelection() { var activeSequence = app.project.activeSequence; var selection = activeSequence.getSelection();
if (!selection.length) { return; }
var trackId = selection[0].parentTrackIndex; var originalInPoint = activeSequence.getInPointAsTime(); var originalOutPoint = activeSequence.getOutPointAsTime(); var start = selection[0].start; var end = selection[selection.length - 1].end; activeSequence.setInPoint(start.seconds); activeSequence.setOutPoint(end.seconds);
var nestedSequence = activeSequence.createSubsequence(true);
activeSequence.videoTracks[trackId].overwriteClip(nestedSequence.projectItem, start.seconds); activeSequence.setInPoint(originalInPoint.seconds); activeSequence.setOutPoint(originalOutPoint.seconds);
return nestedSequence;}Sequence.exportAsFinalCutProXML()
Section titled “Sequence.exportAsFinalCutProXML()”app.project.sequences[index].exportAsFinalCutProXML(outputPath)
Description
Section titled “Description”Creates a new FCP XML representation of the sequence and its constituent media.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
outputPath | String | The output path for the new FCP XML file. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.exportAsMediaDirect()
Section titled “Sequence.exportAsMediaDirect()”app.project.sequences[index].exportAsMediaDirect(outputPath, presetPath, workAreaType)
Description
Section titled “Description”Renders the sequence to the specified output path, using the specified output preset (.epr file), and honoring the specified work area type.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
outputPath | String | An output path, to which to render the media. |
presetPath | String | Path to the preset file (.epr file) which contains the encoding settings. |
workAreaType | Integer | The work area type to be rendered (see below). One of: |
- 0 - Renders the entire sequence. | ||
- 1 - Renders between the in and out point of the sequence. | ||
- 2 - Renders the work area of the sequence. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.exportAsProject()
Section titled “Sequence.exportAsProject()”app.project.sequences[index].exportAsProject(outputPath)
Description
Section titled “Description”Creates a new Project object containing only the given sequence and its constituent media.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
outputPath | String | The output path for the new project. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.getExportFileExtension()
Section titled “Sequence.getExportFileExtension()”app.project.sequences[index].getExportFileExtension(outputPresetPath)
Description
Section titled “Description”Retrieves the file extension associated with the specified output preset (.epr file).
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
outputPresetPath | String | The output preset to be used. |
Returns
Section titled “Returns”Returns a string.
Sequence.getInPoint()
Section titled “Sequence.getInPoint()”app.project.sequences[index].getInPoint()
Description
Section titled “Description”Retrieves the current sequence in point, in seconds.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a string.
Sequence.getInPointAsTime()
Section titled “Sequence.getInPointAsTime()”app.project.sequences[index].getInPointAsTime()
Description
Section titled “Description”Retrieves the current sequence in point.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a Time object.
Sequence.getOutPoint()
Section titled “Sequence.getOutPoint()”app.project.sequences[index].getOutPoint()
Description
Section titled “Description”Retrieves the current sequence out point, in seconds.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a string.
Sequence.getOutPointAsTime()
Section titled “Sequence.getOutPointAsTime()”app.project.sequences[index].getOutPointAsTime()
Description
Section titled “Description”Retrieves the current sequence out point.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a Time object.
Sequence.getPlayerPosition()
Section titled “Sequence.getPlayerPosition()”app.project.sequences[index].getPlayerPosition()
Description
Section titled “Description”Retrieves the position of the CTI (Current Time Indicator), in ticks.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a Time object.
Sequence.getSelection()
Section titled “Sequence.getSelection()”app.project.sequences[index].getSelection()
Description
Section titled “Description”An array of Track item objects, of the selected clips in the sequence, in temporal order.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a TrackItemCollection object.
Sequence.getSettings()
Section titled “Sequence.getSettings()”app.project.sequences[index].getSettings()
Description
Section titled “Description”Retrieves the settings of the current sequence.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns an object; a sequence settings structure.
| Property | Type | Description |
|---|---|---|
audioChannelCount | Integer | Number of audio channels in the sequence. |
audioChannelType | Integer | Audio channel type. One of: |
- 0 - Mono | ||
- 1 - Stereo | ||
- 2 - 5.1 | ||
- 3 - Multichannel | ||
- 4 - 4 Channel | ||
- 5 - 8 Channel | ||
audioDisplayFormat | Integer | Audio timecode display format. One of: |
- 200 - Audio Samples | ||
- 201 - Milliseconds | ||
audioSampleRate | Time object | Audio sample rate. |
autoToneMapEnabled | Boolean | Whether Auto Tone Map Media is checked. |
compositeLinearColor | Boolean | Whether sequence is composited in linear color. |
editingMode | String | The GUID of the editing mode. |
maximumBitDepth | Boolean | Whether sequence is composited at maximum depth. |
maximumRenderQuality | Boolean | Whether sequence is rendered at maximum quality. |
previewCodec | String | Four character code of preview codec in use. |
previewFrameWidth | Integer | Width of preview frame. |
previewFrameHeight | Integer | Height of preview frame. |
previewFileFormat | Integer | Path to the output preset (.epr file) being used for preview file rendering. |
videoDisplayFormat | Integer | Video time display format. One of: |
- 100 - 24 Timecode | ||
- 101 - 25 Timecode | ||
- 102 - 29.97 Drop Timecode | ||
- 103 - 29.97 Non-Drop Timecode | ||
- 104 - 30 Timecode | ||
- 105 - 50 Timecode | ||
- 106 - 59.94 Drop Timecode | ||
- 107 - 59.94 Non-Drop Timecode | ||
- 108 - 60 Timecode | ||
- 109 - Frames | ||
- 110 - 23.976 Timecode | ||
- 111 - 16mm Feet + Frames | ||
- 112 - 35mm Feet + Frames | ||
- 113 - 48 Timecode | ||
videoFieldType | Integer | Video field type. One of: |
- -1 - Default | ||
- 0 - No Fields (Progressive Scan) | ||
- 1 - Upper Field First | ||
- 2 - Lower Field First | ||
videoFrameHeight | Integer | Height of sequence video frame. |
videoFrameWidth | Integer | Width of sequence video frame. |
videoPixelAspectRatio | String | Pixel aspect ratio. |
vrHorzCapturedView | Integer | The horizontal captured view, in degrees, for VR. |
vrVertCapturedView | Integer | The vertical captured view, in degrees, for VR. |
vrLayout | Integer | The layout of footage in use, for VR. One of: |
- 0 - Monoscopic | ||
- 1 - Stereoscopic - Over/Under | ||
- 2 - Stereoscopic - Side by Side | ||
vrProjection | Integer | The projection type in use, for VR footage. One of: |
- 0 - None | ||
- 1 - Equirectangular |
Sequence.getWorkAreaInPoint()
Section titled “Sequence.getWorkAreaInPoint()”app.project.sequences[index].getWorkAreaInPoint()
Description
Section titled “Description”Retrieves the current sequence work area in point, in seconds.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a string.
Sequence.getWorkAreaInPointAsTime()
Section titled “Sequence.getWorkAreaInPointAsTime()”app.project.sequences[index].getWorkAreaInPointAsTime()
Description
Section titled “Description”Retrieves the current sequence work area in point.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a Time object.
Sequence.getWorkAreaOutPoint()
Section titled “Sequence.getWorkAreaOutPoint()”app.project.sequences[index].getWorkAreaOutPoint()
Description
Section titled “Description”Retrieves the current sequence work area out point, in seconds.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a string.
Sequence.getWorkAreaOutPointAsTime()
Section titled “Sequence.getWorkAreaOutPointAsTime()”app.project.sequences[index].getWorkAreaOutPointAsTime()
Description
Section titled “Description”Retrieves the current sequence work area out point.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a Time object.
Sequence.importMGT()
Section titled “Sequence.importMGT()”app.project.sequences[index].importMGT(path, time, vidTrackOffset, audTrackOffset)
Description
Section titled “Description”Imports a MOGRT, or an After Effects Motion Graphics Template, to the specified video or audio track, at the specified time.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
path | String | Full path to a valid MOGRT (.mogrt file), created in After Effects. |
time | String | The time at which to insert .mogrt, in ticks. |
vidTrackOffset | Integer | How many tracks from the zero-th video track, into which to insert .mogrt content. |
audTrackOffset | Integer | How many tracks from the zero-th audio track, into which to insert .mogrt content. |
Returns
Section titled “Returns”Returns a TrackItem object.
Sequence.importMGTFromLibrary()
Section titled “Sequence.importMGTFromLibrary()”app.project.sequences[index].importMGTFromLibrary(libraryName, mgtName, time, vidTrackOffset, audTrackOffset)
Description
Section titled “Description”Imports a MOGRT, or an After Effects Motion Graphics Template, from the current Premiere Pro user’s Creative Cloud Libraries, to the specified video or audio track, at the specified time.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
libraryName | String | The name of Library (from the current PPro user’s Creative Cloud Libraries). |
mgtName | String | The name of .mogrt within that library. |
time | String | The time at which to insert .mogrt, in ticks. |
vidTrackOffset | Integer | How many tracks from the zero-th video track, into which to insert .mogrt content. |
audTrackOffset | Integer | How many tracks from the zero-th audio track, into which to insert .mogrt content. |
Returns
Section titled “Returns”Returns a TrackItem object.
Sequence.insertClip()
Section titled “Sequence.insertClip()”app.project.sequences[index].insertClip(projectItem, time, vTrackIndex, aTrackIndex)
Description
Section titled “Description”Inserts a clip into the sequence, on the specified video and audio tracks, at the specified time.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
projectItem | ProjectItem object | A project item from which to get media. |
time | Time | The time at which to add project item. |
vTrackIndex | Integer | The (zero-based) track index, into which to insert video. |
aTrackIndex | Integer | The (zero-based) track index, into which to insert audio. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.isDoneAnalyzingForVideoEffects()
Section titled “Sequence.isDoneAnalyzingForVideoEffects()”app.project.sequences[index].isDoneAnalyzingForVideoEffects()
Description
Section titled “Description”Returns whether or not the sequence is done analyzing for video effects.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a boolean.
Sequence.isWorkAreaEnabled()
Section titled “Sequence.isWorkAreaEnabled()”app.project.sequences[index].isWorkAreaEnabled()
Description
Section titled “Description”Returns whether or not the sequence work area bar is enabled.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a boolean.
Sequence.linkSelection()
Section titled “Sequence.linkSelection()”app.project.sequences[index].linkSelection()
Description
Section titled “Description”Links the selected video and audio clips in the sequence.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.overwriteClip()
Section titled “Sequence.overwriteClip()”app.project.sequences[index].overwriteClip(projectItem, time, vTrackIndex, aTrackIndex)
Description
Section titled “Description”Inserts a clip into the sequence, overwriting existing clips, on the specified video and audio tracks, at the specified time.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
projectItem | ProjectItem object | A project item from which to get media. |
time | String | The time at which to add project item, in seconds. |
vTrackIndex | Integer | The (zero-based) track index, into which to insert video. |
aTrackIndex | Integer | The (zero-based) track index, into which to insert audio. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.performSceneEditDetectionOnSelection()
Section titled “Sequence.performSceneEditDetectionOnSelection()”app.project.sequences[index].performSceneEditDetectionOnSelection(actionDesired, applyCutsToLinkedAudio, sensitivity)
Description
Section titled “Description”Performs cut detection on the sequence selection.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
actionDesired | String | One of: |
- CreateMarkers | ||
- ApplyCuts | ||
applyCutsToLinkedAudio | Boolean | Whether to apply detected cuts on linked audio. |
sensitivity | String | One of: |
- LowSensitivity | ||
- MediumSensitivity | ||
- HighSensitivity |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.setInPoint()
Section titled “Sequence.setInPoint()”app.project.sequences[index].setInPoint(time)
Description
Section titled “Description”Sets a new sequence in point.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
time | Integer or Time object | A new time in seconds. |
Returns
Section titled “Returns”Null.
Sequence.setOutPoint()
Section titled “Sequence.setOutPoint()”app.project.sequences[index].setOutPoint(time)
Description
Section titled “Description”Sets a new sequence out point.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
time | Integer or Time object | A new time in seconds. |
Returns
Section titled “Returns”Null.
Sequence.setPlayerPosition()
Section titled “Sequence.setPlayerPosition()”app.project.sequences[index].setPlayerPosition(time)
Description
Section titled “Description”Sets the position of the CTI (Current Time Indicator) in the sequence.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
time | String | A new time in ticks. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.setSettings()
Section titled “Sequence.setSettings()”app.project.sequences[index].setSettings(sequenceSettings)
Description
Section titled “Description”Sets the settings of the current sequence. [Editorial: I apologize for any perceived pedantry; sometimes, obvious documentation needs to be obvious. -bbb]
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
sequenceSettings | Object | A sequence settings object, obtained via Sequence.getSettings(). |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.setWorkAreaInPoint()
Section titled “Sequence.setWorkAreaInPoint()”app.project.sequences[index].setWorkAreaInPoint(time)
Description
Section titled “Description”Sets a new sequence work area in point.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
time | Integer or Time object | A new time in seconds. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.setWorkAreaOutPoint()
Section titled “Sequence.setWorkAreaOutPoint()”app.project.sequences[index].setWorkAreaOutPoint(time)
Description
Section titled “Description”Sets a new sequence work area out point.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
time | Integer or Time object | A new time in seconds. |
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.unlinkSelection()
Section titled “Sequence.unlinkSelection()”app.project.sequences[index].unlinkSelection()
Description
Section titled “Description”Unlinks the selected video and audio clips in the sequence.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”Returns a boolean; true if successful.
Sequence.setZeroPoint()
Section titled “Sequence.setZeroPoint()”app.project.sequences[index].setZeroPoint(newZeroPoint)
Description
Section titled “Description”Set the starting time of the sequence.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
newZeroPoint | String | The new zero point in ticks. |
Returns
Section titled “Returns”Returns a boolean; true if successful.