I am trying to have an external SWF load when a button is on (press)…and reverse from it’s midpoint when anyother button is on (rollover)
My problem is the fact that if you rollover, and then go to a 3rd rollover it will play the on (press) animation again
I tried changing the Transitions Between External SWFs code…but it just doesnt seem to work…
I have been working on trying to finish up a site, and it’s been killing me all night…and into the morning…hoping for some help
Here the as I place in the Button
[AS]on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “section1”;
container.loadMovie(“section1.swf”);
}
}
on (rollOver) {
if (_root.currMovie != “section1”) {
if (container._currentframe >= container.midframe) {
container.play();
}
}
}[/AS]
I don’t know what to place in the last frame of section1.swf
I hope someone has some ideas
Case