in my program, i have a single menu that has multiple menuItemImages like this:
Menu *mainMenu = [Menu menuWithItems: levelButton1,levelButton2,levelButton3,levelButton4,levelButton5, nil];
mainMenu.position = cpv(180, 180);
[mainMenu alignItemsVerticallyWithPadding:9];
[self addChild:mainMenu z:1];
at this point all button are active, but i want some these menu buttons to be disabled but visible to user which would be activated later on in the app. but just cant fig it out how to do that..
i know it can be possible by adding each menu button to diff individual menu. but i was wondering if its possible with single menu.
can anyone help me with is..??
thnx..