I ran across an interesting performance comparison tool at businessintelligence.me
This could be very useful for code optimization and for a general understanding of what’s going on behind the scenes.
Perhaps the most striking comparisons in this tool are the ones that compare Vectors to Arrays. Looping Vectors appears to be about 60x faster than looping through Arrays. Someone recently asked me when you would want to use Vectors and my response was whenever you possibly can. And if you think about it, the times which you need an untyped Array are (should be) almost never.

Awesome find sir, passed it along.
Hi.
Test is good.this graphics drawing referenced speed?
I did not know that about Vectors. I didn’t even know what a Vector was. Now, I will be including that in my workflow.
Thanks so much!
Array is THAT much slower than Vector because it should be casted.
var num:int = int(array[i]);
Vector is faster than Array, but not THAT much.
SP.