I have a splash intro for my game. After you click play it loads like this

loadMovieNum("game.swf", 1)
stop();


Then in the game, the score does not show up or work. Now when I load the game.swf by itself, the score works and shows up.

Here is the script for score im using


(Script for the number thats suppose to show)

onClipEvent(load){
score=0
}


(How you add the score after clicking right answer)

on(press){
_root.scorer.score+=1
}


Thanks for help!