I'm using 0.8.1.
Menu's work fine for me, except when placed near the screen edges.
Then they become very difficult to trigger. A direct touch does not
work. You have to like touch the edges, and it's very difficult to
get it to trigger. I create the menu button like this:
MenuItem *btnNext = [MenuItemFont itemFromString:@"Play Next..." target:self selector:@selector(playNext:)];
Menu *btnNextScene = [Menu menuWithItems:btnNext, nil];
btnNextScene.position = ccp( 200, 30);
btnNextScene.visible = NO;
[self addChild:btnNextScene z:5 tag:NEXT_BUTTON];
If I position it at 160,240 it works perfectly.
But if I position it near the bottom of the screen, it does not work.
Help!