hi guys, i have 99.5 rc1 and the following problem
CCLabelTTF *plabel = [CCLabelTTF labelWithString:@"250" fontName:@"Marker Felt" fontSize:64];
plabel.position = b.position;
[self addChild:plabel];
[plabel runAction: [CCFadeOut actionWithDuration:2]];
[self removeChild:plabel cleanup:NO];
with this code the label 250 doent show.. if i take out removechild the FadeOut action run as expected.. but of course i need to remove that label, when the action is over.. i need to show the fadeout effect!
cleanup:NO (or false or FALSE) isnt soppose to let the child terminate all actions?