About The Author
-

19 Comments

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

  • kak man
    Reply

    Great video it is my first time using flash cs4. I was able to successfully create my site, it is a test site but it works, thank you.

  • Jamezilla1
    Reply

    This is so well made, thank you. I got the basics of this… dont know why people still create flash websites though. I prefer an angular bootstrap site.

  • Khayyam Kinoo
    Reply

    Hello there, very helpful video indeed. I need help! If the size of my webpage is larger than my screen, my browser does not give the option for scrolling down. It crops the web page. Anyone can enlighten me please. thank you

  • Mufasa jungle
    Reply

    WOW you can creat a fucking low class website without even knowing shit! So when you have a problem you have got NO FUCKING CLUE WHAT TO DO

  • Luke Skywalker
    Reply

    cause the stop script he uses don't work you will get errors n will just flash so use this can take the music part out if you like

    stop();

    function button1_clicked(e:MouseEvent):void{
    gotoAndStop("page1");
    }

    function button2_clicked(e:MouseEvent):void{
    gotoAndStop("page2");
    }

    function button3_clicked(e:MouseEvent):void{
    gotoAndStop("page3");
    }

    function button4_clicked(e:MouseEvent):void{
    gotoAndStop("page4");
    }

    function button5_clicked(e:MouseEvent):void{
    gotoAndStop("page5");
    }

    button1.addEventListener(MouseEvent.CLICK, button1_clicked);
    button2.addEventListener(MouseEvent.CLICK, button2_clicked);
    button3.addEventListener(MouseEvent.CLICK, button3_clicked);
    button4.addEventListener(MouseEvent.CLICK, button4_clicked);
    button5.addEventListener(MouseEvent.CLICK, button5_clicked);

    function playMusic(e:MouseEvent):void{
    var myMusic:Sound = new Sound();
    var soundFile:URLRequest = new URLRequest("music.mp3");
    myMusic.load(soundFile);
    myMusic.play();
    }