Hye yo peeps!?? how you doing!? i really need help with this , it is probably a stupid question but im getting started in this flash thing… the thing is that i dont knwo how to load a .swf without the midframe thing. i just need to load the diferent sections into a “container” but without the outro animation. soo when chnaging between the swf in the container it should do it inmediately.
here is the code it usually use for midframes how can i modify it just to load the swf? one more thing… im using compex buttons (that why im using //this.)
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function() {
if (_root.currMovie == undefined) {
_root.currMovie = "information";
_root.container.loadMovie("information.swf");
} else if (_root.currMovie != "information") {
if (_root.container._currentframe>=_root.container.midframe) {
_root.currMovie = "information";
_root.container.play();
}
}
};
i really aprecite your help!
care!