Thanks in advance for any assistance...
I'm making a simple file with 5 check boxes. At the beginning of my movie, I declare 5 global variables like so:
set (houseclip , 1);
set (vacationclip, 1);
set (charityclip, 1);
set (carclip, 1);
set (quitclip, 1);
I'm testing with "quitclip". In my third scene, I have a twice nested movie clip with a button that holds this script.
on (press) {
set (_root.quitclip, 0);
}
Finally, I have a "go" button that holds this script.
on (release) {
if (_root.quitclip = 0) {
tellTarget ("_root"
{
gotoAndPlay ("Scene 3", "start3"
;
}
}
if (_root.quitclip = 1) {
tellTarget ("_root"
{
gotoAndPlay ("Scene 4", "start4"
;
}
}
}
This set of scripts always ends up sending me to scene 4, even after i've pressed the button which should send the user to scene 3. Anybody know why???
I'm making a simple file with 5 check boxes. At the beginning of my movie, I declare 5 global variables like so:
set (houseclip , 1);
set (vacationclip, 1);
set (charityclip, 1);
set (carclip, 1);
set (quitclip, 1);
I'm testing with "quitclip". In my third scene, I have a twice nested movie clip with a button that holds this script.
on (press) {
set (_root.quitclip, 0);
}
Finally, I have a "go" button that holds this script.
on (release) {
if (_root.quitclip = 0) {
tellTarget ("_root"
gotoAndPlay ("Scene 3", "start3"
}
}
if (_root.quitclip = 1) {
tellTarget ("_root"
gotoAndPlay ("Scene 4", "start4"
}
}
}
This set of scripts always ends up sending me to scene 4, even after i've pressed the button which should send the user to scene 3. Anybody know why???