Hi,
I found this tutorial (kirupa.com - Transitions Between External SWFs) on kirupa.com and want to use that technique on my site.
The problem is that I’m using animated buttons, which of course are using action script as well.
Question is:
How to mix my script:
on (rollOver) {
mouse_over_single = true;
}
on (rollOut) {
mouse_over_single = fstartlse;
} on (release){
_root.contents2.loadMovie(“single.swf”);
_root.contents.loadMovie(“blank.swf”);
}
with the one shown in the tutorial:
on (release)
{
if (_root.currMovie == undefined)
{ _root.currMovie = “main”;
container.loadMovie(“main.swf”);
} else if (_root.currMovie != “main”)
{ if (container._currentframe >= container.midframe)
{ _root.currMovie = “main”;
container.play();
}
}
}
Link to my *.fla menu file: http://djbosk.risp.pl/problem/main_menu.fla
- Has NE1 got NE ideas how to mix them to make my menu work correctly…?
Thx in advance
Bosk