Sequenced Events [MX2004]

Is there a way to store functions in an array so that I can then call the _array[num] to call the function? The _array will be sorted that is why I am wanting to call the functions through the array.

DETAILS:
I am using the Tween class’s onMotionFinished to create a series of events like pan, zoom, fade, etc… Pretty much all GUI stuff. Because the order of the sequence of events will likely change based on user interaction I am not able to hard-code the onMotionFinshed to perform a specific function. So I figure I would store the functions in a function_array and use a counter var to store the current location in the sequence of events. Or maybe a “pause” & “resume” command inside of a for loop?

Thanks