Forum Moderators: open

Message Too Old, No Replies

Adding Intro Flash to website

Can anyone tell me how?

         

JuddWM

7:39 pm on Apr 21, 2003 (gmt 0)

10+ Year Member



I need to add an Intro Flash to my website that i already created by using Vision Blazer but i dont known how to add it. Can anyone help me?

Hobgoblin

7:53 pm on Apr 21, 2003 (gmt 0)

10+ Year Member



You mean the HTML to embed the movie onto the page?

Use this... change "whatever.swf" to whatever yours is named, and use your own id, height, width and bgcolor values as well:

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="600" HEIGHT="400" id="whatever" ALIGN="">
<PARAM NAME=movie VALUE="whatever.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>

<EMBED src="whatever.swf" quality=high bgcolor=#000000 WIDTH="600" HEIGHT="400" NAME="whatever" ALIGN="left" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>

Be sure to have both the EMBED and OBJECT values, as NN and IE use those different tags respectively.

JuddWM

8:29 pm on Apr 21, 2003 (gmt 0)

10+ Year Member



Here is an example of what i am talking about. www.example.com/

[edited by: heini at 9:05 pm (utc) on April 21, 2003]
[edit reason] sorry, no urls per TOS / thank you! [/edit]

Hobgoblin

8:54 pm on Apr 21, 2003 (gmt 0)

10+ Year Member



I'm not sure I understand what you're asking -

You have a flash intro already built, right?

Now are you asking how to put it on an HTML page, or how to tell the movie to go to the home page once the movie is over or have an enter button for the user to click on?

JuddWM

11:40 pm on Apr 21, 2003 (gmt 0)

10+ Year Member




Yes, I already created a enter button for the user to go to the homepage (because it will keep playing) but I just don't know how and where to add it (the Intro Flash) in my website. I think the first response that you sent to me was to show me how to add it in a webpage but what i realy need it to do is to automaticaly play right after i type the website's address and once i press the enter button to automaticaly send to the homepage.

Hobgoblin

5:56 am on Apr 22, 2003 (gmt 0)

10+ Year Member



OK - well, the flash movie will automatically start playing unless you have stop(); commands keeping it from playing.

For the enter button, you have to edit the .FLA file and add the following lines of code to your enter button:

on (release) {
getURL ("mainpage.html");
}

dodo10

7:52 pm on Apr 22, 2003 (gmt 0)

10+ Year Member



It's working!
Thank You very much Hobgoblin.