Hi,
I think there's a simple answer to this, but I can't find it. How can I make actionscript remember something?
For example :
I have a navigation that works really simple, with labels along the timeline :
onRollOver = function () {
gotoAndPlay("over");
}
onRollOut = function () {
gotoAndPlay("out");
}
onRelease = function () {
gotoAndPlay("press");
}
Whenever I press my button(which is a MC), and I don't keep my mouse on it, the timeline jumps to "out" again. Fair enough I guess, cause that's what I say in the script, but how can I change that?
I just want my MC to stay on "press" when I clicked it.
I think when I know how to do that I can also make actionscript remember what MC was clicked and then remove it whenever I click another MC ... no?
If you only have the slightest idea ... reply me plz!