How do I get the number of transforms in Transform[]??

I was wondering and I really need help.

How can you get the number of variables or transforms in this case from:

var varName:Transform[];

1 Answer

1

It’s the .Length property:

   varName.Length

Thanks for the help