Shapes into clickable links??

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

  1. #1

    Default Shapes into clickable links??

    Can I make a shape (tweened) into a clickable link?

    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

  2. Similar Questions and Discussions

    1. Do banner ads need to be clickable
      I'm creating my first banner ad. Will the sites hosting the ad generally make the whole ad clickable (to direct to our web site) or do I need to...
    2. any clickable control
      Hi all, Is there a webcontrol or an htmlcontrol available that does a postback on a onclick but is more generic that a button? For example I...
    3. CUTTING OUT SHAPES FROM SHAPES
      I'm guessing this has something to do with the knockout groups and grouping, but what I'm looking to do is sorta make a "comet trail" type shape. ...
    4. access - how can I make feilds into clickable links?
      ok what I want to do is pull the feilds from teh database but what is really giving me probs is I want a list of headlines that when clicked will...
    5. Clickable area
      I an image which illustrates a circle. The area out of the circle is white and when I do Background transparent it disappears. When i assign a...
  3. #2

    Default Re: Shapes into clickable links??

    I found the answer, given by creativity06. You can find the answer at
    the following thread:

    [L=link from a flash
    file]http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=196
    &threadid=808356[/L]

    MailManUSA Guest

  4. #3

    Default Re: Shapes into clickable links??

    Put an invisible button on top of the shape and add a Get URL action to
    the instance of the invisible button.

    To create an invisible button:
    1. Insert > New Symbol > Button
    2. Leave the Up, Over, Down buttons empty and in the Hit frame create a
    filled shape (color doesn't matter as it's invisible).

    Using the invisible button:
    1. Create a new layer above the layer with the shape tween.
    2. Insert a blank keyframe dirctly above the frame where the X resides
    in the timeline.
    3. Drag an instance of the button symbol to the stage on top of the X.

    Adding the GetURL action:
    With the button instance selected, access the Action panel and insert a
    getURL action:

    on (release) {
    getURL("http://www.whatever.com");
    }

    Kat

    MailManUSA wrote:
    > Can I make a shape (tweened) into a clickable link?
    >
    > 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
    >
    Kathy Guest

  5. #4

    Default Re: Shapes into clickable links??

    Thanks Kat. Your help has been greatly appreciated. Thank you for the fast response as well.

    Regards,

    Adam
    MailManUSA 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