ailyngatmaitan
Programmer
i'm doing my project which is a multimedia presentation and i'm using buttons for navigations like home, next, back. i would like to ask, what is the actionscript for an exit button that will close the flash movie
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
on(release){
unloadMovieNum(0);
}
//Or...
exit_btn.onRelease = function(){
unloadMovieNum(0);
}
on(release){
fscommand("quit");
}
//Or...
exit_btn.onRelease = function(){
fscommand("quit");
}