A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Please help!! Scroll Bar in Video List

  1. #1
    Member
    Join Date
    Aug 2003
    Location
    Texas
    Posts
    82

    Please help!! Scroll Bar in Video List

    I am using a video list for my videos but when i scroll down, it goes more than I want and when I scroll up, it doesn't scroll all the way up. Could someone please help me? Thank you.

    the code is:

    txt.setMask(mask)
    scrollbar.onMouseDown = function() {
    if (this.hitTest(_root._xmouse, _root._ymouse) && txt._height>mask._height) {
    this.startDrag(false, scrollbarBG._x, scrollbarBG._y, scrollbarBG._x, scrollbarBG._height-this._height)
    txt.onEnterFrame = scrollThumbs;
    dragging = true
    }
    };
    scrollbar.onMouseUp = function() {
    stopDrag()
    dragging = false
    delete this.onEnterFrame;
    };
    function scrollThumbs() {

    var funkyVar = -this._parent.scrollbar._y*(((this._height-this._parent.scrollbar._height)/(this._parent.scrollbarBG._height-this._parent.scrollbar._height))-1)
    this.Y = (funkyVar-this._y)*.2;
    this._y += this.Y;
    if(Math.abs(funkyVar-this._y)<1 && !dragging){
    delete this.onEnterFrame
    }

    }
    Ghost

  2. #2
    Banned
    Join Date
    Oct 2008
    Posts
    74
    Google search "flash video player with playlist", and you can pick a pre-designed flv player as you like

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