A Flash Developer Resource Site

Results 1 to 7 of 7

Thread: HELP!!! Rollover menu

Hybrid View

  1. #1
    Junior Member
    Join Date
    Apr 2004
    Posts
    4

    HELP!!! Rollover menu

    Does anyone know how to achieve the rollover effect shown here at http://polychrome.org/

    It seems like the menu "detects" the reversal of mouse motion and start sliding the other way when you move your mouse to opposite direction. What script comment does this?

    Any help is much appreciated.

  2. #2
    Senior Member
    Join Date
    Jan 2004
    Posts
    245
    I was playing with this maybe you can find use for it do as you like with it. I have been working one using A/S one if i can get it too work properly i will let you know.

    Regards Barry_UK
    Attached Files Attached Files
    Last edited by Barry_UK; 04-30-2004 at 06:52 PM.

  3. #3
    Junior Member
    Join Date
    Apr 2004
    Posts
    4
    Thank you so much

  4. #4
    Musician/Sound Engineer
    Join Date
    Dec 2003
    Location
    AZ
    Posts
    252
    This isn't really meant to be a menu But I don't see why it couldn't be!!
    Check it out.

    Mike
    Attached Files Attached Files

  5. #5
    Junior Member
    Join Date
    Apr 2004
    Posts
    4
    Thanks launchpad, I think I can work with that (i hope). This sample is a lot more similar to what I wanted to achieve than any other samples I ever seen.

  6. #6
    Junior Member
    Join Date
    Apr 2004
    Posts
    4
    Can someone please see if they can figure out how to make the scrolling consistent instead of position sensitive?

    Thanks in advance.

  7. #7
    Senior Member
    Join Date
    Jan 2004
    Posts
    245
    Make a movie clip add this action to get your desired effect of
    scrolling consistent. All the code is I made is a simple loop




    onClipEvent (enterFrame) {
    _x = _x + 10;
    // if the instance goes off stage right,
    // then move it to the left side of stage
    if(_x > 300){
    _x = 0;
    }
    }


    Regards Barry_UK

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center