Skip to main content
Hey Evgenii
Inspiring
June 6, 2023
Answered

is it possible to fill individual word in text clip?

  • June 6, 2023
  • 2 replies
  • 488 views

Hi, I am trying to make a script that will import text as a text layers and change filling of the separate words or create color box around it, however I don't see any possibility to access the inviditual character styling witihin text clip, is it possible to do at all? I know ae doesn't have this feature, but what about ppro?

 

 

This topic has been closed for replies.
Correct answer Bruce Bullis

The PProPanel sample imports a .mogrt (created in AE), and modifies its exposed parameters. 

https://github.com/Adobe-CEP/Samples/blob/e60d6a22ef44d8eb4cca3904c35a0c050576b697/PProPanel/jsx/PPRO/Premiere.jsx#L1865

If the parameters you mention [above] have been exposed as editable by the .mogrt creator, then you should be able to modify their associated param streams, using the .mogrt component object returned by newTrackItem.getMGTComponent().

2 replies

Bruce Bullis
Community Manager
Bruce BullisCommunity ManagerCorrect answer
Community Manager
June 6, 2023

The PProPanel sample imports a .mogrt (created in AE), and modifies its exposed parameters. 

https://github.com/Adobe-CEP/Samples/blob/e60d6a22ef44d8eb4cca3904c35a0c050576b697/PProPanel/jsx/PPRO/Premiere.jsx#L1865

If the parameters you mention [above] have been exposed as editable by the .mogrt creator, then you should be able to modify their associated param streams, using the .mogrt component object returned by newTrackItem.getMGTComponent().

Participating Frequently
June 6, 2023

Hey,

Yes, in Premiere Pro you can edit the single text. Double-click on the text in the Program monitor to enable the text field select the single text and go to the Essential Graphics panel to change the parameters. Only the selected text properties get changed.

Stan Jones
Community Expert
Community Expert
June 6, 2023

@Suraj5EBF, I think Evgenii is talking about using scripting.

 

@Bruce Bullis 

 

Stan