Question
I can't seem to get my flash site to work- Please help
Good morning to all,
I am creating a site in Flash, I am using AS3 to create a site that stops/starts the movie on my home page and I have a series of buttons that play a head (or are supposed to) to the a frame for each additional page. Do I need A.S. for each button as well? I didn't think I did. The script below is the first one in the layer titled actions, this I thought is supposed to stop/start the movie at the beginning and the button abt_mgn_btn is supposed to bring it to frame 10 to play my about page. ?? at my frame number 10 should I put the stop(); script there as well? And at every frame break for the next pages? I am hopelessly in need of guidance. Thank you to anyone helping me out.
import flash.events.EventDispatcher;
import flash.display.MovieClip;
this.stop();
function startMovie(event:MouseEvent):void {
this.gotoAndPlay(10);
}
abt_mgn_btn.addEventListener(MouseEvent.click,startMovie);
I am creating a site in Flash, I am using AS3 to create a site that stops/starts the movie on my home page and I have a series of buttons that play a head (or are supposed to) to the a frame for each additional page. Do I need A.S. for each button as well? I didn't think I did. The script below is the first one in the layer titled actions, this I thought is supposed to stop/start the movie at the beginning and the button abt_mgn_btn is supposed to bring it to frame 10 to play my about page. ?? at my frame number 10 should I put the stop(); script there as well? And at every frame break for the next pages? I am hopelessly in need of guidance. Thank you to anyone helping me out.
import flash.events.EventDispatcher;
import flash.display.MovieClip;
this.stop();
function startMovie(event:MouseEvent):void {
this.gotoAndPlay(10);
}
abt_mgn_btn.addEventListener(MouseEvent.click,startMovie);