Search found 5 matches

by Sebastian Moreno
June 27th, 2023, 4:58 am
Forum: Scripts Discussion
Topic: AE Script undo steps
Replies: 0
Views: 9029

AE Script undo steps

I am writing a script that does several things one after the other.

Is there a trick to collapse or delete the undo history of what the script does?
If I want to undo after executing the script, it would start going back steps of what the script did.

by Sebastian Moreno
December 20th, 2017, 7:26 am
Forum: Scripts Discussion
Topic: reference for effect parameters names
Replies: 1
Views: 7123

Re: reference for effect parameters names

Hi there
I am not sure if this would help you:
https://www.provideocoalition.com/after ... tch-names/

also to find the parameters name you could use
rd_GimmePropPath.jsx 

best
Sebastian
by Sebastian Moreno
December 20th, 2017, 7:19 am
Forum: Scripts Discussion
Topic: Delete Selected Keyframes via script
Replies: 4
Views: 12710

Re: Delete Selected Keyframes via script

I am struggling now with the layers. So it will delete all keyframes from all selected properties from selected layers. AE deletes the selected keyframes form the first selected property from the first selected Layer--good until then :D. After that, looks like the selection goes to hell and is like ...
by Sebastian Moreno
November 9th, 2017, 6:45 am
Forum: Scripts Discussion
Topic: Delete Selected Keyframes via script
Replies: 4
Views: 12710

Re: Delete Selected Keyframes via script

Hi Jordan
That did the trick.So good to know this, no idea that the indexes stay the same, because apparently  ae deselects after deleting a keyframe. 
Thanks a lot.
by Sebastian Moreno
November 4th, 2017, 10:04 am
Forum: Scripts Discussion
Topic: Delete Selected Keyframes via script
Replies: 4
Views: 12710

Delete Selected Keyframes via script

Hi everyone,  I am a still  beginner at Extendscript.  How could I store selected keyframes so I can delete them afterwards. I have tried arrays but I am missing something. This is the simplified version: var keySelection = property.selectedKeys;  for (i = keySelection[0]; i < keySelection.length; ...