javascript - Swfobject video doesn't work in IE9 -
javascript - Swfobject video doesn't work in IE9 -
i have such swfoject shows video in site. works fine @ browsers except ie 9. can problem?
<script src='http://...js/swfobject.js'></script> <div id='video' style='width: 640px; height: 480px;'></div> <script > swfobject.embedswf('http://...js/swfobject.js', 'video', 640, 480, '10.3', 'false', {file:'cam210.0', streamer:'rtmp://1111111111.../1111111111', 'rtmp.tunneling':false, autostart:true}, {allowfullscreen : 'true', allownetworking : 'all'}); </script>
update
<iframe id='video' name='iframeanimfx' src='http://xmpp.feelinhome.ru:8080/flu/js/swfobject.js' height='600' width='900'></iframe> <script > swfobject.embedswf('http://...jwplayer.swf', 'video', 640, 480, '10.3', 'false', {file:'cam210.0', streamer:'rtmp://.../1111111111', 'rtmp.tunneling':false, autostart:true}, {allowfullscreen : 'true', allownetworking : 'all'}); </script>
try putting in iframe,
<iframe name="iframeanimfx" src="http://yourswfobjecturl.swf" height="600" width="900"> </iframe>
you can set height , width of iframe whatever like.
javascript internet-explorer-9 swfobject
Comments
Post a Comment