Hey Everyone.
Im having a problem with a unloading a onClipEvent.
I have a web site which ive set up with a content_mc on the main scene and all the content inside that mc.
In my main scene i have a photo with a page curl effect, that is set off by a onClipEvent.
I only want this effect on the home page in the main scene, so how do i unload it after i go into the other pages???
Ive spent hours trying everything i know…
Please help!!!
Many many thanks
ck
My code as is:
onClipEvent (enterFrame) {
if (_root._xmouse>_root.x1 and _root._xmouse<_root.x2 and _root._ymouse>_root.y1 and _root._ymouse<_root.y2) {
tellTarget ("_root.next") {
gotoAndStop(2);
}
} else {
tellTarget ("_root.next") {
gotoAndStop(3);
}
}
}