Arrays - holding functions?

Hiya … is it possible to put a function into an array and execute it from calling it via the array?
I did this before in as2

var funcs:Array = new Array(one);
function one()
{
//do this;
}
funcs[0](); // Bammmm execute function 'one'

Any Ideas…?! in AS3 o course
Thanks :slight_smile: