Help with embdeding flash!

Status
Not open for further replies.

cyber-cliff

Banned
Banned
1,181
2008
43
0
i want to embedd this swf to my wordpress page..
Code:
http://www.slater.co.nz/global/bizztools/2010/datestamp2009_rm_acclipse.swf
here's my code, but doesnt work!

<object width="600" height="400" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="high" /><param name="play" value="false" /><param name="LOOP" value="true" /><param name="src" value="http://www.slater.co.nz/global/bizztools/2010/datestamp2009_rm_acclipse.swf" /><param name="loop" value="loop" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" /><embed width="600" height="400" type="application/x-shockwave-flash" src="http://www.slater.co.nz/global/bizztools/2010/datestamp2009_rm_acclipse.swf" quality="high" play="false" LOOP="true" loop="loop" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>
please help guys!... :( :(
 
9 comments
ok i tried the Easy Embedd Flash.. and put this on my page.. but nothing happenss

[swf src="http://www.slater.co.nz/global/bizztools/2010/datestamp2009_rm_acclipse.swf" width=600 height=400]You must have Flash to view this file[/swf]
 
i want to embedd this swf to my wordpress page..
Code:
http://www.slater.co.nz/global/bizztools/2010/datestamp2009_rm_acclipse.swf
here's my code, but doesnt work!

please help guys!... :( :(

Does it print any error message? (having the errors report active in your php.ini is required)
 
If it's activated, the error is displayed right on the page.
Open your php.ini and look for display_erros and check if it's on or off.

But forget it, I got it wrong. I thought that the problem might be with the "" inside the tags, conflicting with the php code, but that would turn the page into a mess, and I dont think that's happening.
 
why not just use:
Code:
<embed src="http://www.slater.co.nz/global/bizztools/2010/datestamp2009_rm_acclipse.swf" type="application/x-shockwave-flash" allowfullscreen="true" height="550" width="680">
 
Try this ...

Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="665" height="450" id="FlashID" title="cyber-cliff">
  <param name="movie" value="global/bizztools/2010/datestamp2009_rm_acclipse.swf" />
  <param name="quality" value="high" />
  <param name="wmode" value="opaque" />
  <param name="swfversion" value="8.0.35.0" />
  <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
  <param name="expressinstall" value="Scripts/expressInstall.swf" />
  <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
  <!--[if !IE]>-->
  <object type="application/x-shockwave-flash" data="global/bizztools/2010/datestamp2009_rm_acclipse.swf" width="665" height="450">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="8.0.35.0" />
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
      <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
      <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
  </object>
  <!--<![endif]-->
</object>
 
Status
Not open for further replies.
Back
Top