Click to See Complete Forum and Search --> : how to link flash movie with HTML


rlsailu
12-15-2004, 11:20 AM
I have created a movie using the Flash player.. i would like to link this in the website that i'm developing.. I know that if u dont have flash in ur system the user cannot view the flash movie in the website.. how do i overcome this and let the user view the movie... kindly someone help me with the code i have to write in HTML for this..

Thanks

rlsailu
12-16-2004, 12:11 PM
anyone..???/ please help...:confused:

wizard
12-16-2004, 05:29 PM
I'm not sure exactly what it is you are asking... the user just needs to have the Flash player on their comp. to view the movie.

Sorry. :confused:

hypnoseeker
12-17-2004, 03:47 AM
To add a flash movie to a webpage you need to know 3 things:

Width in pixels, height in pixels, movie name.

Replace your specific data into the code below and it should work fine :)

You can also see a little flash movie I made to illustrate this code at:http://www.motivationvault.com/temp/flash_eg/Movie1.html

Hope this helps
@ndrew
http://www.motivationvault.com

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,42,0"
id="Movie2" width="200" height="100">
<param name="movie" value="Movie2.swf">
<param name="bgcolor" value="#FFFFFF">
<param name="quality" value="high">
<param name="allowscriptaccess" value="samedomain">
<embed type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
width="200" height="100"
name="Movie2" src="Movie2.swf"
bgcolor="#FFFFFF" quality="high"
swLiveConnect="true" allowScriptAccess="samedomain">
</embed>
</object>

hypnoseeker
12-17-2004, 03:56 AM
If you take careful note of the code above you will see that it will work for all visitors.

If a visitor doesn't have a flashplayer installed then the code automatically prompts them to visit Macromedia and get it... right then and there.


@ndrew

hypnoseeker
12-17-2004, 04:01 AM
If you go to my site, please take a look at the special demo flash animation and its source. It's exactly as posted here.

http://www.motivationvault.com/temp/flash_eg/Movie1.html

@ndrew

rlsailu
12-18-2004, 02:00 PM
Thanks for the response.... i'll try and find if this works..


Thanks once again