Skip to main content
Participant
April 7, 2015
Answered

how to call .aex file in after effects script?

  • April 7, 2015
  • 1 reply
  • 791 views

i want to apply a transition between two video clips and the transition is a .aex file. i can apply ffx with "applyPreset".

how can i apply it via script? or even an outside code?

thanks!

This topic has been closed for replies.
Correct answer Dan Ebberts

So are you asking how you would apply a transition effect to a layer? I guess that would be like this:

var myLayer = app.project.activeItem.layer(1);

myLayer.property("Effects").addProperty("Linear Wipe");

Dan

1 reply

Dan Ebberts
Community Expert
Dan EbbertsCommunity ExpertCorrect answer
Community Expert
April 7, 2015

So are you asking how you would apply a transition effect to a layer? I guess that would be like this:

var myLayer = app.project.activeItem.layer(1);

myLayer.property("Effects").addProperty("Linear Wipe");

Dan

dowi84Author
Participant
April 8, 2015

thanks a lot that is exactly what i needed