Skip to main content
Known Participant
November 18, 2025
Question

How to export effect's Compositing Option through API?

  • November 18, 2025
  • 1 reply
  • 65 views

Hi guys, below each effect, there is a Compositing Option. I can not find matchname for this, I want to export the effect opacity value to json file.

 

1 reply

Alex White
Legend
November 18, 2025

Here is an example:

app.project.item(1).layer("asd").property("ADBE Effect Parade").property("ADBE Noise Alpha2").property("ADBE Effect Built In Params").property("ADBE Effect Mask Opacity")

 

So you will need:

.property("ADBE Effect Built In Params").property("ADBE Effect Mask Opacity")

Known Participant
November 19, 2025

So what you mean is coding like this: myCurrectEffectObject.property("ADBE Effect Built In Params").property("ADBE Effect Mask Opacity") ?