|
|
| I was trying to use a condensed array in AE (on a text layer's source text), but it kept throwing an error. Does anyone know why this was throwing an error?
var temp = new Array("test,"test2");
var temp = ["test","test2"]
Instead I had to break it out into separate arguments like this. Why does it need that?
|
|