From f4ac4d09ad77902917c3da37aed88a9a57dfc963 Mon Sep 17 00:00:00 2001 From: Bruce Bullis Date: Wed, 29 May 2024 10:39:36 -0700 Subject: [PATCH 1/2] Set expectations: no more updates Set expectations: no more updates --- docs/introduction/changelog.rst | 7 +++++++ docs/item/projectitem.rst | 3 ++- docs/sequence/sequence.rst | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/introduction/changelog.rst b/docs/introduction/changelog.rst index cab44b2..689044d 100644 --- a/docs/introduction/changelog.rst +++ b/docs/introduction/changelog.rst @@ -6,6 +6,13 @@ What's new and changed for scripting? ---- +.. _Changelog.23.x: + +`Adobe Premiere Pro 23.0`_ +************************************************************************************************************************************ + +- Decision : No further changes or improvements to Premiere Pro's ExtendScript API are planned or scheduled. Any such changes will be reconsidered, once Premiere Pro moves to UXP-based extensibility. + .. _Changelog.15.x: `Adobe Premiere Pro 15.4`_ diff --git a/docs/item/projectitem.rst b/docs/item/projectitem.rst index c9c3866..9077f6c 100644 --- a/docs/item/projectitem.rst +++ b/docs/item/projectitem.rst @@ -518,8 +518,9 @@ app.setSDKEventMessage("Color Primaries " + " = " + colorSpace.primaries, 'info' app.setSDKEventMessage("Matrix Equation " + " = " + colorSpace.matrixEquation, 'info'); } ----- +-------------------------------------- .. _projectItem.getOriginalColorSpace: +-------------------------------------- ProjectItem.getOriginalColorSpace() ********************************************* diff --git a/docs/sequence/sequence.rst b/docs/sequence/sequence.rst index 9569bc6..b2bda13 100644 --- a/docs/sequence/sequence.rst +++ b/docs/sequence/sequence.rst @@ -162,7 +162,7 @@ Sequence.projectItem **Description** -The :ref:`projectItem` associated with this sequence. Note that not all sequences will have a `projectItem`, there may be sequences in a project that Premiere generates that are invisible to the user, these do not have `projectItem`s. +The :ref:`projectItem` associated with this sequence. Note that not all sequences will have a `projectItem`, there may be sequences in a project that Premiere generates that are invisible to the user, these do not have `projectItems`. **Type** From 427b60b67f1fe2fc47b60830cafa7886578291b6 Mon Sep 17 00:00:00 2001 From: Dan McSweeney Date: Fri, 7 Jun 2024 13:21:14 -0700 Subject: [PATCH 2/2] ComponentParam Note how to compare localizations --- docs/sequence/componentparam.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/sequence/componentparam.rst b/docs/sequence/componentparam.rst index 349013f..917684e 100644 --- a/docs/sequence/componentparam.rst +++ b/docs/sequence/componentparam.rst @@ -11,6 +11,12 @@ ComponentParam object The **component parameter** object represents a parameter associated with a component, applied to a :ref:`trackItem`. +NOTE: +For a developer working across different localizations, it's possible to find the corresponding keys by comparing ZStrings. +Below is an example between En and De. Here are the paths to the files: +C:\Program Files\Adobe\Adobe Premiere Pro 2024\Dictionaries\de_DE\zdictionary_PPRO_de_DE.dat ("...anti-flicker Filter") +C:\Program Files\Adobe\Adobe Premiere Pro 2024\Dictionaries\en_US\zdictionary_PPRO_en_US.dat ("...anti-Flimmer Filter") + ---- ==========