i have menu with buttons when touch the Play button game go to another scene but Touch don't work there i'm write self.isToucheEnabled=YES; in init method and add in onEnter method [[CCTouchDispatcher sharedDispatcher] setDispatchEvents:YES];

but that don't work pleas help why i can enable touch

link|improve this question
Provide your code. And ask your question specifically. Is your menu button not working or Your layer not responding to touch?? – russell Aug 3 '11 at 11:49
my layer not responding to touch – Hayk Aug 3 '11 at 12:10
feedback

2 Answers

You must put the following code:

-(void) onEnter { [[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self priority:0 swallowsTouches:YES]; }

inside the scene you want to enable the TouchDispatcher on, then in the same scene make sure you enter this:

-(void) onExit { [[CCTouchDispatcher sharedDispatcher] removeDelegate: self]; }

and the touch should register in every scene that you have the above code in.

link|improve this answer
feedback

This is an example of how you define a menu in cocos2d (source):

CCMenuItem *starMenuItem = [CCMenuItemImage  temFromNormalImage:@"ButtonStar.jpg" selectedImage:@"ButtonStarSel.jpg" target:self selector:@selector(starButtonTapped:)];
starMenuItem.position = ccp(60, 60);
CCMenu *starMenu = [CCMenu menuWithItems:starMenuItem, nil];
starMenu.position = CGPointZero;
[self addChild:starMenu];

If you need more help, please provide the code that you are using to create the menu.

link|improve this answer
- (BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event{ NSLog(@"touch"); return YES; } i have this method but that dont work. – Hayk Aug 3 '11 at 10:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.