Guest_imported
New member
- Jan 1, 1970
- 0
Hello
Using Flash 5, I have a button embedded in a movie clip in scene 1 and when it is dragged onto another movie clip the following script fires. If the dragged object lands on mcNominal the movie doesn't go to the next scene, scene 2 and I have tried nextFrame and many other options. The first scene consists of just one frame and a frame script that calls stop(); but I don't think that is affecting it. Hope somebody can help.
Thanks
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag ();
if (this._dropTarget == "/mcNominal"
{
nextScene ();
}
}
Using Flash 5, I have a button embedded in a movie clip in scene 1 and when it is dragged onto another movie clip the following script fires. If the dragged object lands on mcNominal the movie doesn't go to the next scene, scene 2 and I have tried nextFrame and many other options. The first scene consists of just one frame and a frame script that calls stop(); but I don't think that is affecting it. Hope somebody can help.
Thanks
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag ();
if (this._dropTarget == "/mcNominal"
nextScene ();
}
}