PDA

View Full Version : hitTest Prob


Randyhippo
12-13-2002, 02:32 PM
onClipEvent (enterFrame) {
_root.status=this. hitTest (_root.MRB);
if (status== true) {
}

Boolean is working fine giving me a true value when hit,
But on hit i need to sent it to a scene called WED.
have tried gotoAndPlay scene, but no joy!
HELP i know iam missing something simple, just cant see for looking.
Cheers for any help!!

binkyboo
12-13-2002, 02:44 PM
onClipEvent (enterFrame) {
_root.status = this.hitTest(_root.MRB);
if (status == true) {
_root.gotoAndPlay("WED");
}
}

Randyhippo
12-13-2002, 03:03 PM
Works a treat!!!
Knew i was missing something.
Cheers!!!:)