Seeking Help: Proper JSFL Syntax for Setting 'Advanced' Color Mode Properties on Frames
I am trying to use JSFL to adjust an instance's Advanced Color Mode (Alpha).
My Action:
I manually select a keyframe on the timeline, then in the Frame Properties panel, under "Color Effect" -> "Advanced", I adjust the Alpha value there.
The Problem:
- I tried using
getDocumentDOM().setInstanceAlpha(60), but this only adjusts the transparency in the "Object" tab, which is not what I want. I need to modify the Alpha property as seen in the "Frame" tab's Color Effect. - I tried capturing the code from the History panel, but it generated
getDocumentDOM().setElementProperty(%S, %S), which throws an "Argument is invalid" error when played back. - I also tried
getDocumentDOM().setElementProperty("alpha", 50), but it had no effect.
I have checked the official tutorials but couldn't find the correct property names for this specific panel.
My Question:
Could any experts tell me the correct JSFL syntax to adjust the Alpha transparency within the "Frame" (Color Effect) panel?
