On mouseover i'm trying to get my selected button to come to the top of the display list of buttons.

the code below is my latest effort which does not work.

PHP Code:
function mouseOverHandler (e:Event):void {
this.setChildIndex(e.target,this.numChildren 1);

any idea where i go from here?

rat