How to get menuitem array's index?

482 Views Asked by At

I want to get an index of menuItem.

How can I get it in the menuItem function?

        var button=[];
        var menu;
        for(var i=0;i<3;i++){
            button[i]=new cc.MenuItemImage(
                res.ball_png,
                res.ball_png,
                function(){
                    cc.log(i);   // this part
                },this);
            button[i].setTag(i);
            button[i].x=100*i;
        }
        menu=new cc.Menu(button);
        this.addChild(menu);
1

There are 1 best solutions below

0
On BEST ANSWER

I found myself.

var button=[];
        var menu;
        for(var i=0;i<3;i++){
            button[i]=new cc.MenuItemImage(
                res.ball_png,
                res.ball_png,
                function(val){
                    cc.log(val.getTag());
                },this);
            button[i].setTag(i);
            button[i].x=100*i;
        }
        menu=new cc.Menu(button);
        this.addChild(menu);