• I’m hoping to get a clean and clear code based response to this question. I’ve search and read dozens of similar questions, but none have the answers. I’m not trying to figure out how to get YouTube to work in wordpress, I build a custom video player that works off an XML file.

    Basically the problem I’m trying to solve is getting a Flash file to display(which works off an XML file) in wordpress WITHOUT using a Flash WP plugin. I’m a Flash developer without access to a clients wordpress login, so I need to be able to provide them a copy & paste solution and not require them to install another plugin.

    Here is the code below (some links changed for security reasons)

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,2" width="501" height="465">
    	              <param name="movie" value="https://dev.mysite.com/TEN.swf?vmcKey=95f89b6648e611dfa1fd0019b558899" />
    	              <param name="quality" value="high" />
    	              <param name="wmode" value="transparent" />
    	              <param name="allowfullscreen" value="true" />
    	              <param name="flashVars" value="theXML=https://www.mysite.com/XML/theXML.xml" />
    	              <param name="vmcKey" value="95f89b6648e611dfa1fd0019b9f1584b" />
    
    	              <embed src="https://dev.mysite.com/TEN.swf?vmcKey=95f89b6648e611dfa1fd0019b558899"
    						wmode="transparent"
    						allowfullscreen="true"
    						flashVars="theXML=https://www.mysite.com/XML/theXML.xml"
    	                    flashVars="vmcKey=95f89b6648e611dfa1fd0019b9f1584b"
    						allowscriptaccess="always"
    						quality="high"
    						pluginspage="https://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    						type="application/x-shockwave-flash" width="501" height="465">
    	              </embed>
    	            </object>

    How should this be re-written in order to work on wordpress (without the need of the Kimili Flash plugin)?

  • The topic ‘The How to get Flash Object/Embed code to work post’ is closed to new replies.