please will you help me get this to play in IE?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ladoual
    New Member
    • May 2012
    • 1

    please will you help me get this to play in IE?

    This code is working fine in Firefox but not on iE .
    so i need your help to run it on iE .
    Code:
    <body>
    <object data="http://www.onrtv.org/tv/player-quick.swf"
        height="545" width="790">
        <param name="allowFullScreen" value="true">
        <param name="allowScriptAccess" value="true">
        <param name="bgcolor" value="transparent">
        <param name="wmode" value="transparent">
        <param name="flashvars" value="rtmp=rtmp://217.114.200.24/tchad/tchad&playerID=player-container">
    </object>
    </body>
    Last edited by Frinavale; Aug 8 '12, 04:43 PM. Reason: Added code tags and code formatting
  • Fary4u
    Contributor
    • Jul 2007
    • 273

    #2
    include embed code
    Code:
    <embed  width="790" height="545" src="http://www.onrtv.org/tv/player-quick.swf" wmode="transparent" quality="high" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" ... />
    i'm sure it works

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      Don't know if this will fix the problem but I noticed that your <param> tags do not have a closing </param>.

      Try:
      Code:
      <body>
      <object data="http://www.onrtv.org/tv/player-quick.swf"
          height="545" width="790">
          <param name="allowFullScreen" value="true"></param>
          <param name="allowScriptAccess" value="true"></param>
          <param name="bgcolor" value="transparent"></param>
          <param name="wmode" value="transparent"></param>
          <param name="flashvars" value="rtmp=rtmp://217.114.200.24/tchad/tchad&playerID=player-container"></param>
      </object>
      </body>

      Although I suspect that you are going to need the <embed> tag.

      -Frinny

      Comment

      Working...