Try e.currentTarget ??

Isaac Alves wrote:
Hi fellows,
Cannot solve this problem:

        function buttonClicked(e:Event):void {
         trace (buttonsArray.indexOf(e.target.name));

It always  traces "-1". This code should trace the index of the Array
element right? for ex: 0, 1, 2 or 3.

If i do this, it will trace the correct name of the element.

        function buttonClicked(e:Event):void {
         trace (e.target.name);

If I do this, it will trace the name of the second element:

        function buttonClicked(e:Event):void {
         trace (buttonsArray[1].name);

Why indexOf doesn´t work properly?

Thanks a lot!
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



--

Glen Pike
01326 218440
www.glenpike.co.uk <http://www.glenpike.co.uk>

_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to