The Most Active and Friendliest
Affiliate Marketing Community Online!

“Propeller”/  Direct Affiliate

Displaying videos on static website without knowing programming.

Scooby

New Member
affiliate
Hello,
I am not a programmer and I want to embed flash video player and videos in my static website can anyone give me suggestions or simple method to follow? I would be thankful to you. Await your reply.
 
How about this flash video player maker? It can make a flash video player from your videos and the flash video player can be fully customized.

You can also upload the videos to Youtube, or Facebook, then link it to your website.

Also, you can use HTML code to embed the .swf file to your website, like this:

HTML:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"  width="432" height="330" title="game">
      <param name="movie" value="/flash/yourflash.swf" />
      <param name="quality" value="high" />
      <embed src="/flash/yourflash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="432"  height="330"></embed>
    </object>
 
How about this flash video player maker? It can make a flash video player from your videos and the flash video player can be fully customized.

You can also upload the videos to Youtube, or Facebook, then link it to your website.

Also, you can use HTML code to embed the .swf file to your website, like this:

HTML:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"  width="432" height="330" title="game">
      <param name="movie" value="/flash/yourflash.swf" />
      <param name="quality" value="high" />
      <embed src="/flash/yourflash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="432"  height="330"></embed>
    </object>


Only problem with that is that the html isn't W3C compliant. The <embed> tag originally came from netscape and although it is adopted by IE it is still not compliant. This is xhtml 1.0 transitional and far simpler anyway:

<object
type="application/x-shockwave-flash"
data="example.swf"
width="300" height="175" hspace="10" vspace="10" align="right">
<param name="movie" value="example.swf" />
</object>

to make it compliant with html 4.01 transitional this would be the html I think:

<object
type="application/x-shockwave-flash"
data="example.swf"
width="300" height="175" hspace="10" vspace="10" align="right">
<param name="movie" value="example.swf">
</object>
 
banners
Back