Announcement

Collapse
No announcement yet.

Flash Logo on Home page

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Flash Logo on Home page

    I have tried to tackle the problem when I was on version 7.Hopefully its easier in V8
    On my homepage I want to insert a .swf logo. I have included the file in the SITE 1 folder as well as preview folder. At the moment it shows as big white space above my logo.Help

    Thanks

    Website is
    www.gracefashionshop.com

    #2
    Flash is added in v8 in exactly the same way as it was in v7. IIRC before in v7 you placed your flash in a fragment - do just the same this time in v8.

    Comment


      #3
      I never magaged to do it in V7. Can anyone give me the instructions to folow step by step. The code I have used is as follows:
      <html>
      <head>
      <title>
      logo
      </title>
      </head>
      <body bgcolor="#FFFFFF">
      <table width=100% height=100%>
      <tr>
      <td>
      <center>
      <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
      codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,65,0"
      id="logo"
      width="800"
      height="100">
      <param name="movie" value="logo.swf">
      <param name="bgcolor" value="#FFFFFF">
      <embed name="FSB" src="logo.swf"
      quality="high" bgcolor="#FFFFFF" swLiveConnect="true"
      width="800"
      height="100"
      type="application/x-shockwave-flash"
      pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
      </object>
      </center>
      </td>
      </tr>
      </table>
      </body>
      </html>

      Thanks

      Comment


        #4
        This has been covered so many times, you really should search the forum on something this common. Your file sits here - http://www.gracefashionshop.com/acatalog/logo.swf not where you are currently pointing to it here - http://www.gracefashionshop.com/logo.swf

        Change the file location accordingly, IIRC this is exactly the same instructions as on your v7 problem.

        Code:
        <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
        codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,65,0"
        id="logo"
        width="800"
        height="100">
        <param name="movie" value="http://www.gracefashionshop.com/acatalog/logo.swf">
        <param name="bgcolor" value="#FFFFFF">
        <embed name="FSB" src="http://www.gracefashionshop.com/acatalog/logo.swf"
        quality="high" bgcolor="#FFFFFF" swLiveConnect="true"
        width="800"
        height="100"
        type="application/x-shockwave-flash"
        pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
        </object>
        It's not what you'd call a logo though, it's a wedding album?

        Comment

        Working...
        X