I have one scene running, on button click I want to open other
scene over the running scene, smaller so the first should
stay in background.
I tough I can do it with runWithScene
[[CCDirector sharedDirector] runWithScene:myScene]
but it says it should be used
just for the first one.
- (void) runWithScene: (CCScene *) scene
Enters the Director's main loop with the given Scene. Call it to run only your FIRST scene. Don't call it if there is already a running scene.