Alhadis
My feedback
5 results found
-
1 voteAlhadis shared this idea ·
-
1 vote
An error occurred while saving the comment Alhadis shared this idea · -
23 votesAlhadis supported this idea ·
-
4 votesAlhadis shared this idea ·
-
39 votes
An error occurred while saving the comment Alhadis commentedPlease add a panel option to the "Layers" panel to expand new layers by default. I'm sick of clicking it for each new document I create.
Alhadis supported this idea ·
Running this script:
let foo = "Foo";
const bar = "Bar";
alert(foo + bar);
produces the following error:
Error 25: Expected: ;.
Line: 1
-> let foo = "Foo";
ES6 language features are ostensibly supported, according to this page: https://helpx.adobe.com/after-effects/using/legacy-and-extend-script-engine.html However, only `var` and `const` bindings appear to be supported. Replacing "let foo =" with "const foo =" in the example above works as expected.