csosa
February 27, 2015, 4:39pm
1
So I have a video in front of my website and in IE it requires to have shockwave player and for people to download it. Can I overrite that? I am not sure why it is doing that. SITE
I have a regular video tag or maybe it is something to ad and remove on my head tag.
<video id="video" poster="images/IOGWORDS.jpg" controls>
<source src="media/IOG_BENEFITS.mp4" type="video/mp4">
</video>
Or it may be my .swf transitions
<object type="clsid/d27cdb6e-ae6d-11cf-96b8-444553540000" data="http://download.macromedia.com" width="974" height="282">
<param name="movie" value="media/iog_transmonitor.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="wmode" value="transparent" />
<embed src="media/banner_tran.swf" quality="high" bgcolor="#ffffff" width="974" height="282" id="TransitionBanner"
wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</object>
It’s your object in your #flashContainer
<div id="flashContainer">
<object type="clsid/d27cdb6e-ae6d-11cf-96b8-444553540000" data="http://download.macromedia.com" width="974" height="282">
<param name="movie" value="media/iog_transmonitor.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="wmode" value="transparent" />
<embed src="media/banner_tran.swf" quality="high" bgcolor="#ffffff" width="974" height="282" id="TransitionBanner"
wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</object>
</div>
Edit-you beat me to it.
csosa
February 27, 2015, 4:49pm
3
I see is it possible to overrite this? I can maybe turn this into a .gif animation instead…
Your data attribute should be what is used to pull the flash. Use this updated HTML.
<div id="flashContainer">
<object type="clsid/d27cdb6e-ae6d-11cf-96b8-444553540000" data="media/banner_tran.swf" width="974" height="282">
<param name="movie" value="media/iog_transmonitor.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="wmode" value="transparent" />
</object>
</div>
There’s no need for <embed>
1 Like
csosa
February 27, 2015, 5:00pm
7
Actually its not working in Chrome now .
Eh sure go add the embed back in.
<embed src="media/banner_tran.swf" quality="high" bgcolor="#ffffff" width="974" height="282" id="TransitionBanner"
wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
1 Like
csosa
February 27, 2015, 5:05pm
9
I see…different browsers read different tags? seem like a lot for a tag …
More like different support.
1 Like
csosa
February 27, 2015, 5:08pm
11
Oh is there any source website where it gives information like that? like what to put for certain browsers for support?
Use this code instedad. We need to get <embed>
out of there.
<object type="application/x-shockwave-flash" data="media/banner_tran.swf" width="974" height="282">
<param name="movie" value="media/iog_transmonitor.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="wmode" value="transparent" />
</object>
By default, Macromedia Flash generates HTML that is invalid (but it works). Can you have your Flash and web standards, too? Drew McLellan has found a way to embed Flash content using only valid tag…
Embed shouldn’t be used in this day and age…object is what you can do since it’s brought back in HTMl5.
1 Like
csosa
February 27, 2015, 5:39pm
14
By the way does my website load slow on your end by any chance using browser? specifically the home page?
I work in a place that offers extremely fast internet so I wouldn’t rely on any answer that I give you.
But to answer your question - it loads normally. Not fast, not slow. Almost everything loads fast here though except the horrendous pages.
system
Closed
May 30, 2015, 12:50am
17
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.