Question:

HTML code geniuses please help!

by  |  earlier

0 LIKES UnLike

Ok I have two flash objects which I want to turn into links to a different webpage. they are currently just embeded objects, here is one of the codes:

<object type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" height="64" width="150" align="middle" data="http://www.jellymuffin.com/generat... blog&font=http://www.jellymuffin.com/gen...

<param name="allowScriptAccess" value="never" />

<param name="allowNetworking" value="internal" />

<param name="movie" value="http://www.jellymuffin.com/genera... blog&font=http://www.jellymuffin.com/gen... />

<param name="quality" value="best" />

<param name="wmode" value="transparent" />

<param name="bgcolor" value="#ffffff" />

</object>

What is the added html code I need to make it a link?

Please help! ty

 Tags:

   Report

4 ANSWERS


  1. DUDE just get Macromedia Dreamweaver and it will build ur HTML for you....that&#039;s what I do.  Then you can insert a Flash Object simply.


  2. &lt;a href=&quot;Put the site you want to link to here&quot;&gt;Put all of that code in here&lt;/a&gt;  

  3. Wrapping it in an href will work.. it works on my site.  But I don&#039;t see any embed tags in your code... that has to be wrapped in the anchor too.  I also think you might be missing some end-quotes.

    Try this:

    &lt;a href=&quot;www.google.com&quot;&gt;

    &lt;object type=&quot;application/x-shockwave-flash&quot; allowScriptAccess=&quot;never&quot;

    allowNetworking=&quot;internal&quot; height=&quot;64&quot; width=&quot;150&quot; align=&quot;middle&quot;

    data=&quot;http://www.jellymuffin.com/gen... blog&amp;font=http://www.jellymuffin.com/gen... &quot;/&gt;

    &lt;param name=&quot;allowScriptAccess&quot; value=&quot;never&quot; /&gt;

    &lt;param name=&quot;allowNetworking&quot; value=&quot;internal&quot; /&gt;

    &lt;param name=&quot;movie&quot; value=&quot;http://www.jellymuffin.com/genera... blog&amp;font=http://www.jellymuffin.com/gen... &quot;/&gt;

    &lt;param name=&quot;quality&quot; value=&quot;best&quot; /&gt;

    &lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;

    &lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;

    &lt;embed

    src=&quot;YOUR .SWF LINK HERE&quot;

            quality=&quot;high&quot;

            bgcolor=&quot;#FFFFFF&quot;

            width=&quot;150&quot;

            height=&quot;64&quot;

            name=&quot;MEDIA NAME HERE&quot;

            align=&quot;middle&quot;

            allowScriptAccess=&quot;sameDomain&quot;

            allowFullScreen=&quot;false&quot;

            type=&quot;application/x-shockwave-flash&quot;

            pluginspage=&quot;http://www.macromedia.com/g...

            autoplay=&quot;true&quot;/&gt;

    &lt;/object&gt;

    &lt;/a&gt;

    This works for me when I run it.

    Cheers!


  4. Hi Annabel,

    Hopefully this will work, as i haven&#039;t tested a flash file being linked this way before (always done it from within the flash file). All you have to do is at the start of that particular code put &quot;&lt;a href=&quot;http://linktowhereyouwant.com&quot;&gt; and at the end of that code put &lt;/a&gt;. This is a ahref tag and is used to create a hyperlink.

    You might find this website incredibly useful while you learn to code HTML: http://www.w3schools.com/HTML/html_links...

    Regards,

    WebPod

Question Stats

Latest activity: earlier.
This question has 4 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.
Unanswered Questions