Is it possible to create Composition Markers?
Posted: May 24th, 2007, 10:15 pm
Hi all!
I'm doing a Javascript for After effects CS3.
I'm able to add layers and effects.
To access properties of layers:
And Layer-time markers something like this:
But, how can I add composition time markers?
Something like this?
I need to use composition time markers because my script will make a marker,
then the user will align some clips to that marker, and then the script will continue.

Can someone help me pleease.
I'm now trying to find some documentation in the After effects scripting guide.
Any help will be appreciated.
Thanks,
Robin.
I'm doing a Javascript for After effects CS3.
I'm able to add layers and effects.
To access properties of layers:
Code: Select all
app.project.item(1).layer(1).effect("Blur").property("Blur Amount")
Code: Select all
app.project.item(1).layer(1).marker
Something like this?
Code: Select all
app.project.item(1).marker
then the user will align some clips to that marker, and then the script will continue.

Can someone help me pleease.
I'm now trying to find some documentation in the After effects scripting guide.
Any help will be appreciated.
Thanks,
Robin.