Skip to content

Commit

Permalink
Updates to app, added Sequence object
Browse files Browse the repository at this point in the history
endless
  • Loading branch information
bbb committed Feb 26, 2018
1 parent f8435d8 commit 075b9fe
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 16 deletions.
49 changes: 34 additions & 15 deletions 2 - App object/application.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,59 +152,78 @@ An Encoder object, providing access to Adobe Media Encoder (as used by Premiere

Encoder object; read-only.


----

.. _app.properties:
.. _app.projectManager:

properties
projectManager
*********************************************

``app.properties``
``app.projectManager``

**Description**

The properties object provides methods to access and modify preference values.
A projectManager object, providing access to project management functions within Premiere Pro.

**Type**

properties object; read-only.
projectManager object; read-only.


----

.. _app.sourceMonitor:
.. _app.userGuid:

sourceMonitor
userGuid
*********************************************

``app.sourceMonitor``
``app.userGuid``

**Description**

Provides access to Source monitor.
A unique identifier for the currently logged-in Creative Cloud user.

**Type**

sourceMonitor object; read-only.
userGuid object; read-only.


----

.. _app.userGuid:
.. _app.properties:

userGuid
properties
*********************************************

``app.userGuid``
``app.properties``

**Description**

userGuid which uniquely identifies the user.
The properties object provides methods to access and modify preference values.

**Type**

GUID; read-only.
properties object; read-only.

----

.. _app.sourceMonitor:

sourceMonitor
*********************************************

``app.sourceMonitor``

**Description**

Provides access to Source monitor.

**Type**

sourceMonitor object; read-only.


=======
Methods
=======
Expand Down
60 changes: 60 additions & 0 deletions 5 - Sequence object/sequence.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
.. highlight:: javascript

.. _sequence:

Sequence object
===================

``Sequence``

**Description**

The **Sequence** object represents sequences of media (a.k.a. "timelines"), in Premiere Pro.

----

==========
Attributes
==========

.. _sequence.name:

name
*********************************************

``sequence.name``

**Description**

The name of the sequence.

**Type**

String; read/write.



=======
Methods
=======

.. _sequence.createBin:

createBin()
*********************************************

``projectItem.createBin(String nameOfNewBin)``

**Description**

Creates an empty bin, within the project item. Only works within project items which are bins.

**Parameters**

Name of new bin.

**Returns**

Returns **0** if creation of bin was successful.

----
7 changes: 6 additions & 1 deletion index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ Welcome to the Premiere Scripting Guide!

.. toctree::
:maxdepth: 2
:caption: Chapter 3 - Project Item object
:caption: Chapter 4 - Project Item object

4 - Project Item object/projectItem

.. toctree::
:maxdepth: 2
:caption: Chapter 5 - Sequence object

5 - Sequence object/sequence

0 comments on commit 075b9fe

Please sign in to comment.