A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Howto: sexy scrollable movie clips

  1. #1

    Howto: sexy scrollable movie clips

    Hi all -

    I've seen some sites lately that have really sexy scrolling movie clips, where the target clip seems to softly glide to a stop as you release the scroller...The solution that I came up with for a scroller is far less elegant.

    Can anyone point me in the direction of a tutorial on implementing this cool style of scrollable clip?

    Thanks in advance,

    Nat

  2. #2
    Senior Member pellepiano's Avatar
    Join Date
    Feb 2000
    Location
    Stockholm, Sweden
    Posts
    15,151
    The Movies section should have some example fla files. ( controlled by mouse, or buttons or scrollbars ).

    Otherwise it quite easy.

    This is for buttons .......

    You just have to put this code ON the movieclip to scroll.

    onClipEvent(enterFrame){
    this._y+=(_root.ypos-this._y)/7;
    }

    And on the buttons just set the position you want the movieclip to scroll to.

    on(release){
    ypos=356;
    }

    -Pelle Piano
    // Image Gallery
    www.studiobild.com
    // Photo Blog
    http://talesofthepixel.blogspot.com

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