How can I link a flash photo to another page on website?

2 replies
  • WEB DESIGN
  • |
Hi Everyone!


I'm sure one of you can help me with this. Here is the embed code for a photo on a website. I just need to add the page I want the photo to link to on his website. Where does it go? The photo is flash so it's throwing me off.



Here is the Embed Code for photo:


<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="750" height="266" id="fixphoto" align="middle"><param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="http://static.internetrnd.com/fixphoto/fixphoto.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="http://static.internetrnd.com/fixphoto/fixphoto.swf" quality="high" bgcolor="#ffffff" width="750" height="266" name="fixphoto" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>


If someone could show me where it goes in the embed code, I would be very appreciative!


-Melissa
#flash #link #linking #page #photo #website
  • Profile picture of the author captainhass
    Hello Melissa,

    Unfortunately, the code you've posted is not an image code. It's a flash object. Flash is different from images. The flash is programmed by Action script and if you want to link it to a particular page, you should write it in your script.

    So, you can't modify the flash, if you can't right the script or if it's copyrighted or protected.

    The HTML image code is like this:

    <img src="image-file-source.jpg" width="300" height="100" alt="alternative text" />

    The parameters between quotes:

    src=""

    Write the image file path between quotes eg. somedomainname/images/image.jpg
    width=""

    The image width in pixels as you want to show


    height=""

    The image height in pixels as you want to show

    And if you want to link the image to a page, you are going to write this code

    <a href="link path"><img src="image-path.jpg" width="100" height="100" alt="some text" /></a>

    Also you change the values between quotes to your real links and values.

    All the best
    {{ DiscussionBoard.errors[4545836].message }}
    • Profile picture of the author angkuh
      Originally Posted by captainhass View Post

      Hello Melissa,

      Unfortunately, the code you've posted is not an image code. It's a flash object. Flash is different from images. The flash is programmed by Action script and if you want to link it to a particular page, you should write it in your script.

      So, you can't modify the flash, if you can't right the script or if it's copyrighted or protected.

      The HTML image code is like this:

      <img src="image-file-source.jpg" width="300" height="100" alt="alternative text" />

      The parameters between quotes:

      src=""

      Write the image file path between quotes eg. somedomainname/images/image.jpg
      width=""

      The image width in pixels as you want to show


      height=""

      The image height in pixels as you want to show

      And if you want to link the image to a page, you are going to write this code

      <a href="link path"><img src="image-path.jpg" width="100" height="100" alt="some text" /></a>

      Also you change the values between quotes to your real links and values.

      All the best
      I'm looking for this tutorial too.
      Thank you capt
      Signature
      UID Facebook GRAB SERVICE
      Use UID in Facebook Ads for super laser targeted audience.
      PM me for order, Price starting $5/10.000 UID
      {{ DiscussionBoard.errors[4551308].message }}

Trending Topics