0
adobe Extend script help
New Here
,
/t5/after-effects-discussions/adobe-extend-script-help/td-p/12180461
Jul 15, 2021
Jul 15, 2021
Copy link to clipboard
Copied
Hi Friends,
please help me to get the layer type in adobe after effects adobe extend the script,
Regards
Senthuran
TOPICS
Scripting
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/after-effects-discussions/adobe-extend-script-help/m-p/12408592#M181936
Sep 27, 2021
Sep 27, 2021
Copy link to clipboard
Copied
You compare it with instanceof
if(layer instanceof AVLayer){
alert('avlayer');
}else if(layer instanceof CameraLayer){
alert('cameralayer');
}else if(layer instanceof LightLayer){
alert('lightlayer');
}
More info here: https://ae-scripting.docsforadobe.dev/layers/layer/
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

