Menu Roll-Over Animation Help w/ Flash MX 2004

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

  1. #1

    Default Menu Roll-Over Animation Help w/ Flash MX 2004

    Hi Gang,

    I am relatively new to Flash, and am currently using Flash MX 2004. I am trying to create a menu effect similar to that used on comedian Richard Schimmel's site ([url]http://www.robertschimmel.com[/url]).

    Specifically, as the mouse passes over each menu item, the blur effect is applied to the menu text. I know how to do that specific effect on a mouse-over. But...

    Here is the part I cannot figure out.... As you move from mousing over one menu item to the next, not only does the animation START on the next menu item, but it completes running on the previous menu item. In other words, mousing over the second menu item does not make the effect on the previous menu item immediately snap back to a non-mouse-over state.

    That part stumps me.

    Could someone please give me specific steps and/or a small sample .FLA to achieve this task?

    On a similar note, I need to create a roll-over (or on-click) effect for a photo gallery. For example, when the viewer clicks an image thumbnail, it zooms in and displays text about the image. I can do that part so far. However, what stumps me is this.... When they then click a different thumbnail, I want to have the currently-zoomed image (if any) to zoom back down to the thumbnail as the newly-clicked image zooms in. All I get in my current attempts is that clicking on the second image cause the other image to snap back to its thumbnail state and then the next image zooms in. :(

    I'm guessing that these two tasks probably use similar techniques. Any assistance on this would be GREATLY appreciated.

    Thanks,

    --Loren--


    Loren Scott Guest

  2. Similar Questions and Discussions

    1. flash player roll back
      anyone have an idea / dwon load location that works to roll back flash player to 7 or 8. i've tried every method on the support page as well as the...
    2. IE issue with flash roll overs
      I have created a menu bar with flash roll overs. When the mouse is over the menu icon it hi-lights and onclick links to another page. This works...
    3. Menu Component in Flash MX 2004 Pro
      I could not able to make Menu Component work in Flash MX 2004 Professional. I could not able to see the menu at all. I tried all the possibilities....
    4. Image Roll Over on flash buttons
      I want to create on my main page a menu system which contains 4 buttons and when some one moves over that button it will show and image related to...
    5. Flash Mx 2004 pop-up menu
      I want to create a pop-up menu that looks some what like the one on macromedia website. Does anyone know where I can learn to do that on the web
  3. #2

    Default Re: Menu Roll-Over Animation Help w/ Flash MX 2004

    Anyone... Anyone.... Bueller?


    Loren Scott Guest

  4. #3

    Default Re: Menu Roll-Over Animation Help w/ Flash MX 2004

    Dear buddy,

    this is really quite a simple effect.

    I would assume that the effect is a small animation inside a movieclip.

    This clip is stopped on a blank frame at "1".

    When the mouse rollsOver the clip it plays all the way through to an end frame
    which has an action on it saying:

    gotoAndStop("1");

    Simple.

    Do you understand?

    DEJ885 Guest

  5. #4

    Default Re: Menu Roll-Over Animation Help w/ Flash MX 2004

    Oh, and in reply to the second part of you question:

    I am assuming you have the "zoom-out" effect in your thumbnail movie.

    You need to add an "if" statement to the on(release) handlers of your
    thumbnail movies telling each to play the "zoom-out" part of the other movie if
    they are stopped at a certain frame.

    So perhaps something like this for movie1_mc:

    on (release) {

    this.gotoAndPlay("2");

    if(this._parent.movie2_mc._currentFrame ==
    ("stopped"))this._parent.movie2_mc.gotoAndPlay("zo omout");

    }

    I hope this makes sense.

    I have used this type of effect and it works fine.


    DEJ885 Guest

  6. #5

    Default Re: Menu Roll-Over Animation Help w/ Flash MX 2004

    Ahhh.... So each of my animated menu items should be saved in the library as
    Movie Clips? That is something I was not already doing. I just had the
    static text there as a button, and on the mouse over event, I was having it
    jump to another frame in the scene, which included another copy of that text
    that used the blur effect, then it would complete and loop back to frame 0.

    So, if I understand correctly, if I have the animated version of the menu
    item saved as a movie clip, and place that on the stage over (or under) the
    static text and have it do the same jumping to that frame where the movie
    clip will play, then it would continue playing to completion even if they
    have already moved the mouse cursor over another menu (which would then
    animate as well)?

    I am VERY new to this. So, pardon me if my questions are fairly brain-dead.
    :)

    Thanks for the assist!

    --Loren--



    "DEJ885" <webforumsuser@macromedia.com> wrote in message
    news:c4l2va$kql$1@forums.macromedia.com...
    > Dear buddy,
    >
    > this is really quite a simple effect.
    >
    > I would assume that the effect is a small animation inside a movieclip.
    >
    > This clip is stopped on a blank frame at "1".
    >
    > When the mouse rollsOver the clip it plays all the way through to an end
    frame
    > which has an action on it saying:
    >
    > gotoAndStop("1");
    >
    > Simple.
    >
    > Do you understand?
    >

    Loren Scott Guest

  7. #6

    Default Re: Menu Roll-Over Animation Help w/ Flash MX 2004

    As with my previous reply to your suggesting, I was not using the zoom
    effect in a movie clip at all. In this case, I was just using a shape tween
    to transform the scale of the image. Once the mouse clicked on the
    thumbnail image (in frame 0), I just had it jumping to another frame in the
    timeline where the tween for that image takes place. But, as I mentioned,
    as soon as they click on another image, the first image would snap back as
    the next image zoomed out. So, I will try your suggestion.

    Still, I'm not 100% certain I follow how it knows to scale the zoomed image
    back down to the thumbnail size once another thumbnail has been clicked (and
    starts to zoom in itself). But... I will research using movie clips some
    more and see if what you suggested makes more sense then.

    Thank you for your assist!

    --Loren--

    "DEJ885" <webforumsuser@macromedia.com> wrote in message
    news:c4lltb$7n3$1@forums.macromedia.com...
    > Oh, and in reply to the second part of you question:
    >
    > I am assuming you have the "zoom-out" effect in your thumbnail movie.
    >
    > You need to add an "if" statement to the on(release) handlers of your
    > thumbnail movies telling each to play the "zoom-out" part of the other
    movie if
    > they are stopped at a certain frame.
    >
    > So perhaps something like this for movie1_mc:
    >
    > on (release) {
    >
    > this.gotoAndPlay("2");
    >
    > if(this._parent.movie2_mc._currentFrame ==
    > ("stopped"))this._parent.movie2_mc.gotoAndPlay("zo omout");
    >
    > }
    >
    > I hope this makes sense.
    >
    > I have used this type of effect and it works fine.
    >
    >

    Loren Scott 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