I was looking at the tut on using score with buttons. I tried that and that works fine. But when I try it with hitTest it doesn’t work. Here’s the script I have.
[AS]
onClipEvent (enterFrame) {
if (_root.guy.hitTest(this)) {
_root.total+1;
}
}
[/AS]
My score box has the var total and my player has thr instance name guy…but it’s just not working. When the player hitTest’s the mc which has the above script score should increase by 1. I’ve attached my .fla…Thanks in advance :).