Im having some troubles with hitTest right now. Im try to make it change frames upon hitTest. Ive tried a few different things.
onClipEvent (enterFrame) {
if (hitTest(_root.mover)==true)
{
play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.mover)==true)
{
gotoAndStop(41);
}
}
Any help?
TL