A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: [F8] mouse movement scroll problem

  1. #1
    Junior Member
    Join Date
    Apr 2008
    Posts
    22

    [F8] mouse movement scroll problem

    hi.

    I have a simple scoll menu bar thing which works fine on mouse movement. but i want to tweak it a little more.

    when the user roll over the buttons i want the scrolling to stop.

    how do i do this??

    i have simply tried aplying a stop action with a onrollover function yet this didn't work??

    please take a look at my .fla

    any help will be much appreciated. cheers
    Attached Files Attached Files

  2. #2
    Senior Member
    Join Date
    Aug 2000
    Location
    Montréal
    Posts
    14,141
    Are you sure of that idea? if my mouse is on the last visible button on the right and i want to scroll to see the next button, it won't scroll again unless i roll out of the menu... not very user friendly

    If you want to try it yourself you just need to ask the main timeline (which contains the loop) to stop or play. Single button example script:
    PHP Code:
    on (rollOver) {
        
    _parent.stop();
    }
    on (rollOut) {
        
    _parent.play();

    gparis

  3. #3
    Junior Member
    Join Date
    Apr 2008
    Posts
    22
    haha yeh, i don't know what i was trying to achieve there.

    cheers for your time to look at my fla.

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