.SWF File is not showing in local html file - html

I have embed a swf file in the local html file but it is not showing the slideshow.
can anyone tell me what is the issue with following code.
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="943" height="290">
<param name="wmode" value="transparent">
<param name="src" value="http://www.unitedwayofgnb.org/imageRotator.swf">
<embed type="application/x-shockwave-flash" width="943" height="290" src="http://www.unitedwayofgnb.org/imageRotator.swf" wmode="transparent">
</object>

Related

Embed external flash video on page

There is a video which can be found here that I would like to embed on my page somewhere. I have not been successful downloading the flash file because I am unable to access inspect element in chrome and I also cannot figure out a way to embed the flash video file by referencing the URL above.
Does anyone know a way to either download the file or embed it?
By the way, this must support IE8 (sorry everyone :) )
Absolute URL: http://www.brainshark.com/brainshark/viewer/getplayer.ashx?v=201207121701
<object type="application/x-shockwave-flash" id="flashContent" name="flashContent"
data="/brainshark/viewer/getplayer.ashx?v=201207121701" width="100%" height="100%"
style="visibility: visible; ">
<param name="scale" value="noscale">
<param name="wmode" value="window">
<param name="allowfullscreen" value="true">
<param name="allowscriptaccess" value="always">
<param name="bgcolor" value="">
<param name="SeamlessTabbing" value="false">
<param name="flashvars" value="pi=119002744&host=www.brainshark.com&securerequest=false&lng=en-GB,en-US;q=0.8,en;q=0.6">
</object>
Enjoy and good luck!

Why does this youtube embed code stop working if I remove the embed tag?

I understood that the embed code had an embed tag inside the object tag as a fallback for IE and old browsers. But, if I, for example, take this code:
<object width="400" height="336"><param name="movie" value="http://www.youtube.com/v/_25bsKcXw5o&rel=0&egm=0&showinfo=0&fs=1">
<param name="wmode" value="transparent"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/_25bsKcXw5o&rel=0&egm=0&showinfo=0&fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"></embed>
</object>
And remove the embed:
<object width="400" height="336"><param name="movie" value="http://www.youtube.com/v/_25bsKcXw5o&rel=0&egm=0&showinfo=0&fs=1">
<param name="wmode" value="transparent"></param>
<param name="allowFullScreen" value="true"></param>
</object>
It doesnt display in Chrome or in Firefox. Why? Does this make sense to anybody? I've tried with several different videos, and the same happens with all of them.
The reason I am doing this is because I wanted to determine where should I change the youtube url attributes (to change behaviour of the player). After doing some more tests, I also noticed that Chrome is responding to he changes I do to the embed tag's parameters, and not to the object's...
Here is a link to Adobe which explains the OBJECT and EMBED tags in detail.

how i embed flv player &.flv file in html?

js file & event on which div box is open now instead of empty div box i want to play .flv files that i download from you tube so how do I embed flv player & its control & play my .flv file in that player?
<object type="application/x-shockwave-flash" width="400" height="350"
wmode="transparent" data="flvplayer.swf?file=**vid location**&autoStart=true">
<param name="movie" value="flvplayer.swf?file=**vid location**&autoStart=true" />
<param name="wmode" value="transparent" />
</object>

Flash movie loads in IE but not Chrome

So I embedded a basic flash movie as per:
http://kb2.adobe.com/cps/415/tn_4150.html
It loads fine in IE, but the flash player in Chrome cannot load the movie. Flash works fine on other sites in Chrome, so what's wrong with this HTML?
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
WIDTH="162"
HEIGHT="391"
id="MobileAnimation">
<PARAM NAME=movie VALUE="img/animatedphone.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED href="img/animatedphone.swf"
quality=high
bgcolor=#FFFFFF
WIDTH="162"
HEIGHT="391"
NAME="MobileAnimation"
ALIGN=""
TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED></OBJECT>
The line that reads:
<EMBED href="img/animatedphone.swf"
Should be:
<EMBED src="img/animatedphone.swf"
Note the change from href to src.

How to remove missing plugin error while using embed tag

As I am using embed tag in my html file but in browser it is showing missing plugin. To solve this plugin problem what can I do?
For playing FLV in html, you should use the tag. For example:
<object type="application/x-shockwave-flash"
width="320" height="240"
wmode="transparent"
data="player.swf?file=video.flv&autoStart=false">
<param name="movie"
value="player.swf?file=video.flv&autoStart=false"/>
<param name="wmode" value="transparent"/>
</object>
Player.swf is player swf file and filename is the file attribute.