FLASH 8 .SWF does not play on my website

Discussion in 'HTML & Website Design' started by lespaul00, Nov 24, 2007.

  1. #1
    I added an .swf I created to my website. A few days ago, it was working (with the annoying ActiveX popup... but regardless, worked).

    Now, I visit my website, and it shows the Shockwave player image loading, and it either stops loading, or just doesn't play my .swf.

    Here is a link to my website for reference: www.drmixology.com

    Thanks.

    Using: Flash 8
     
    lespaul00, Nov 24, 2007 IP
  2. lespaul00

    lespaul00 Peon

    Messages:
    283
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Does anyone have any idea what may be wrong here?
     
    lespaul00, Nov 25, 2007 IP
  3. mikeyd

    mikeyd Peon

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    change : <object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,0,0" width="559" height="298" title="intro">
    <param name="src" value="flash/movie.swf" />
    <param name="AutoStart" value="true" />
    <embed src="flash/movie.swf" width="559" height="298" autostart="true" pluginspage="http://www.macromedia.com/shockwave/download/"></embed>
    </object>

    to : <object width="559" height="298">
    <param name="movie" value="flash/movie.swf">
    <embed src="flash/movie.swf" width="559" height="298">
    </embed>
    </object>

    hope this helps - its not the best way to do it but its a start - if you fancy making it better i recommend the swfobject - just search for it in google
     
    mikeyd, Nov 25, 2007 IP
  4. lespaul00

    lespaul00 Peon

    Messages:
    283
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    That fixed it! Thanks!!!
     
    lespaul00, Nov 25, 2007 IP