Hi,
I have a small question.
I have 3 buttons in my flash fla.
- with:
on (release) {
var o = attachMovie(“mc_blauw”, “mc_blauw”, 0);
o._x = 554.3;
o._y = 288.4;
kleur1 = “blauw”;
}
- with:
on (release) {
var o = attachMovie(“mc_rood”, “mc_rood”, 1);
o._x = 554.3;
o._y = 288.4;
kleur2 = “rood”;
}
- is the order button that links to frame 20. there you see which colors you choose.
on frame 20 is also a button to reset the colors. (unload movie) this works great.
But i also wants when you press the reset button you go back to frame 1. But when i put this AS on the reset button:
on (release) {
unloadMovieNum(0);
unloadMovieNum(1);
gotoAndPlay(1);
}
there is nothing to see. :S looks like he unloads everything.
How can i solve this?
thx