Skip to content

Instantly share code, notes, and snippets.

@aescripts
aescripts / Pseudo Onion Skin.jsx
Last active February 14, 2023 05:34
Nik Ska #AfterEffects #Script #KBar Applies Echo effect to selected layers with settings that work like onion Skin from Adobe Flash.
// Applies Echo effect to selected layers with settings that work like onion Skin from Adobe Flash.
var activeComp = app.project.activeItem;
if(activeComp){
var selLayers = activeComp.selectedLayers;
for(var i = 0; i< selLayers.length; i++){
var echoEffect = selLayers[i]("Effects").addProperty("Echo");
echoEffect(2).setValue(9); //Adjust EchoTime
echoEffect(4).setValue(.5); //Adjust Decay
}
@aescripts
aescripts / Select Later Layers.jsx
Created November 27, 2017 14:48
Zack Lovatt #AfterEffects #Script #KBar This script will select all layers in your comp that start after the selected layer. (It deselects the original layer.)
/***************************************************************************************
SELECT LATER LAYERS
For use w/ ft-toolbar or other script runners.
This script will select all layers in your comp that start after the selected layer.
Note: this deselects the original layer.
This script is provided "as is," without warranty of any kind, expressed
or implied. In no event shall the author be held liable for any damages
arising in any way from the use of this script.