Quote from AsSeenOnTVSCORE
-If anyone knows how to get a number (score) to go up every time a certain movie clip is played, (when the zombie headshot clip is played, add 10. Chest, add 5. ext.) please tell. I think it could work.
on main movie first frame:
_root.score = 0;
whenever you want the score to go up by however much (eg on a frame in a movie clip)
_root.score += 10;
and then select your text box and make it "dynamic" and give it the "variable" of _root.score