
February 6th, 2006
07:22 PM
Neverside Newbie
Status: Offline!
Flash site - how to make that...
HI!
I want to make an animation that's played whenm user leaves the current section of the flash page (first is shown an animation that kinda cosec the section, and then another subsite is loaded) . It's a common thing on flash site unfortunetly i couldn't find any tutorial (meybe because I don't know what subject i should look for).
Can any one tell me the basic approach for achieving that? Or point to a tutorial.
Thanks.

February 7th, 2006
01:30 AM
Neverside Newbie
Status: Offline!
ok to answer my own questrion I've achived that by the following line of code
aboutMeButton.onRelease = function() {
_level7.contentMC.gotoAndPlay("stop_on");
_root.onEnterFrame = function(){
if(_level7.contentMC._currentframe == _level7.contentMC._totalframes){
_level0.myMCL.loadClip("about_me.swf",7);
_root.onEnterFrame = null;
}
}
this.enabled = false;
};
Is there any better way for dong this??