link from a flash file

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

  1. #1

    Default link from a flash file

    I'm extremely new to this but I have a very small flash file that I have
    managed to place on my page saying 'Breaking News' and I need to be able to
    have a link from this when I mouse over it. I can't seem to do this so what
    is the method I need. I have used DWMX a lot but the usual way of dragging
    and making a link doesn't seem to work.
    Thanks a mil
    Brian


    Brian Guest

  2. Similar Questions and Discussions

    1. Linked file uploaded - link still points to local file
      Hi, We are faced with a strange problem in one of your Contribute sites: 2 users reported problems when linking and uploading files: user...
    2. Help needed with ASP form browse for file, create link to file and insert in access database
      I have a form where a user enters their name, date etc. i also want them to be able to click on a browse button and select a file which will then...
    3. Question: Is it possible to add URL link outside of Flash file?
      Hello, I have a Flash file from an extinct company that doesn't include a URL parameter inside in the SWF file. I was asked to link it to a page...
    4. 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...
    5. How can I send data to a Flash file (swf), by clicking on a html link?
      How can I send data to a Flash file (swf), by clicking on a html link? (my english is bad) I have a little Flash movie, inside my html document...
  3. #2

    Default Re: link from a flash file

    Insert your text. Go to Insert -? Convert to Symbol. Select Button. Then double
    click your button. Put keyframe
    1. Insert a text field.
    3. Select your text field (with the black arrow), and make sure you select the
    whole thing.
    4. Look at the top of the menu, and you will see INSERT.
    5. Click INSERT> CONVERT TO SYMBOL.
    6. Name your button whatever you like.
    7. Then you will have a choice to pick if you want it to be a movie clip, a
    graphic, or a button.
    8. Click Button and click okay.
    9. Now, double click your button and you will see the Up, Over, Down, and Hit
    state.
    10. The Up state is what the button will look like without you putting your
    mouse on it. The Over state is when you put your mouse on the button. The Down
    state is what you will see when you click the button. The Hit state is never
    seen.The Hit state determines the boundaries for a button.
    11. To put keyframes in your over,down,up, and hit states you use f6.
    12. Now, go to your main movie and look at the top of the menu in flash and
    click CONTROL> TEST MOVIE.
    13. Then attach the following script to the button by going to Properties -?
    Actions



    on (release) {
    getURL("http://www.changethistotheurlyouwouldliketolinkto.com", "_blank");
    }

    creativity06 Guest

  4. #3

    Default Re: link from a flash file

    Thanks for this.
    Sorry if forgot to post back sooner.
    Regards
    Brian
    "creativity06" <webforumsuser@macromedia.com> wrote in message
    news:c54rao$bli$1@forums.macromedia.com...
    > Insert your text. Go to Insert -? Convert to Symbol. Select Button. Then
    double
    > click your button. Put keyframe
    > 1. Insert a text field.
    > 3. Select your text field (with the black arrow), and make sure you
    select the
    > whole thing.
    > 4. Look at the top of the menu, and you will see INSERT.
    > 5. Click INSERT> CONVERT TO SYMBOL.
    > 6. Name your button whatever you like.
    > 7. Then you will have a choice to pick if you want it to be a movie clip,
    a
    > graphic, or a button.
    > 8. Click Button and click okay.
    > 9. Now, double click your button and you will see the Up, Over, Down, and
    Hit
    > state.
    > 10. The Up state is what the button will look like without you putting
    your
    > mouse on it. The Over state is when you put your mouse on the button. The
    Down
    > state is what you will see when you click the button. The Hit state is
    never
    > seen.The Hit state determines the boundaries for a button.
    > 11. To put keyframes in your over,down,up, and hit states you use f6.
    > 12. Now, go to your main movie and look at the top of the menu in flash
    and
    > click CONTROL> TEST MOVIE.
    > 13. Then attach the following script to the button by going to
    Properties -?
    > Actions
    >
    >
    >
    > on (release) {
    > getURL("http://www.changethistotheurlyouwouldliketolinkto.com",
    "_blank");
    > }
    >

    Brian 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