locked
Add flash intros to website as home page RRS feed

  • Question

  • Hello friends,

    I want to add flash movie as introduction to my web page. I want my flash movie to be displayed first on the webpage and after I press enter, the home page should be displayed.

    Please help me.

    Sunday, February 25, 2007 11:40 AM

Answers

  • Create a flash intro. lets say intro.swf
    Open you main file (say home.swf)
    You must be having an "Enter" button on the last frames of intro.swf. Click on that button and press F9 (Actions). Now write:

    On(release)
    {
    getURL(home.swf);
    }


    I've assumed both files are in same directory. If not then provide the relative path to home.swf.

    A search on "geturl +flash" will fetch you helpful results.
    Monday, February 26, 2007 9:08 PM

All replies

  • Use Anim-FX tool or Swish to create intros.
    Monday, February 26, 2007 7:34 PM
  • Create a flash intro. lets say intro.swf
    Open you main file (say home.swf)
    You must be having an "Enter" button on the last frames of intro.swf. Click on that button and press F9 (Actions). Now write:

    On(release)
    {
    getURL(home.swf);
    }


    I've assumed both files are in same directory. If not then provide the relative path to home.swf.

    A search on "geturl +flash" will fetch you helpful results.
    Monday, February 26, 2007 9:08 PM
  • use macromedia Flash MX to create flash intros and other presentations...use action script to add user interactivity...
    Tuesday, February 27, 2007 1:39 AM
  • step 1: create flash movie using Macromedia Flash MX.
    step 2: create your HTML page with space (table row/table data) for your movie.
    step 3: preferably flash movie in the same folder as your HTML page is.
    step 4: import the movie by writing the following code in the respective space assigned for the movie :-
    <object width="w" height="h">
           <param name="movie" value="MyFlashMovie.swf">
                    <embed src="MyFlashMovie.swf" align="center" width="w" height="h">
            </embed>
    </object>

    you are done!

    regards
    Sumit Dagar
    Tuesday, February 27, 2007 8:08 PM
  • use Macromedia - Dreamweaver 8

    u need not need to type single code www.adobe.com/products/dreamweaver/

    Saturday, March 10, 2007 9:04 AM
  • use readymade templates from Flashy.
    Monday, March 12, 2007 6:42 PM