how do i link an object in Flash to an HTML link?

Ask a Question related to Macromedia Flash Sitedesign, Design and Development.

  1. #1

    Default how do i link an object in Flash to an HTML link?

    hi ppl,

    i want to make a link on an HTML page to an object (layer) in a flash window
    - this should be possible for multiple layers using different links,

    when doing this the frame should somehow be highlited or the flash movie
    should jump to a further frame in this layer.

    can someone please help me out? THNX!

    PS: if the second part is not realistic it doesnt matter

    eniGMa-TheBiG-Man Guest

  2. Similar Questions and Discussions

    1. HTML link talking to flash
      Hi, I posted this in the Dreamweaver forum. I am not good with flash and need some help on this. I thought I could do this via php/MySQL. I have...
    2. play flash object then automagically follow link
      What does the code look like that allows a webpage to play a flash introductory animation...then when it is done playing JUMP to a link (in the...
    3. targeting html link in flash
      hello- i am trying to make a flash toolbar to embed in the left frame my site. i want the links on it to change the page in the other frame though. ...
    4. email link in html - flash 7 projector vs player
      when i put an email link in a html text, it works when using it in a embedded flash in an html page, it doesn't work when clicking it in a projector....
    5. Extreme Newbie - making Flash object a link?
      I thought it would be fairly straight forward to do this but I guess not - I want to create a link when a Flash object is clicked within an html...
  3. #2

    Default Re: how do i link an object in Flash to an HTML link?

    I am not sure I understand the question. Are you trying to link an object in Flash to an html page or picture? Or are you trying to control something in Flash with an external html link?
    cVarz Guest

  4. #3

    Default Re: how do i link an object in Flash to an HTML link?

    I was actually wondering the same thing...I think!

    I am actually JUST beginning to learn Flash so I'm not sure if this is at all
    possible. I have three layers, 35 frames apiece (Note: the following is the
    exact order in my FLA):

    L1] sound
    L2] Shape tween
    L3] 34 blank frames, 35th has text which just says click to enter

    In the 35th frame of L2 (layer 2) I have a shape, an "X" to be exact. I would
    like to have it so that when a user clicks on the "X" they are sent to a PURE
    HTML page. I guess you could think of this Flash file as an into (for neubs).
    I already tried editting the HTML file Flash generated and surrounding the
    <OBJECT> tage with an <a href=""> tag...no luck! I'm just about to take a look
    at the Action Script section of the book I'm reading. Would that have anything
    to do with the outcome of my question? Thank you in advance.

    Adam

    MailManUSA Guest

  5. #4

    Default Re: how do i link an object in Flash to an HTML link?

    You can do this in a number of ways, the easiest. Make the X from the text
    tool, or, make the X with a graphic program so that the X is actually a picture.

    Click the picture once so it's highlighted, then in the behavior panel, click
    +, "goto web page" then enter your URL of the HTML doc you want to go to.

    The behavior should look like this:

    on (release) {

    //Goto Webpage Behavior
    getURL("http://www.macromedia.com","_self");
    //End Behavior

    }


    cVarz Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139