CCTouchesBegan CRASHES.....

does that give any thoughts?

ohhhhhh…
u made me thinking about that i maybe just should make a new thread(new project) and then i would maybe remove that thread breakpoint and it worked!!!
THAAAAANKS FOR UR PATEIENT!!!
SERIOUS U R MY HERO

and if u haven’t got too tired of me, could u then help with my final problem: http://www.cocos2d-x.org/forums/6/topics/47324

Hi! Back from work.

Well, maybe you can read something about breakpoints in XCode here:

It’s very precise and useful if you are not familiar with them.

Regarding your second problem:

Hi again!
i would like to know how to get a touch location
in my case, i need to get the Y coordinate of my touch...

You can simply call this

CCPoint location = touch->getLocationInView();
location = CCDirector::sharedDirector()->convertToGL(location);
double yourY = location.y    // this is the Y you are looking for 

Let me know if this helps, or I can go into more details if you want!

OMG THANK U!:slight_smile: