This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
} |