home *** CD-ROM | disk | FTP | other *** search
- FScrollBarClass = function()
- {
- if(this._height == 4)
- {
- return undefined;
- }
- this.init();
- this.minPos = this.maxPos = this.pageSize = this.largeScroll = 0;
- this.smallScroll = 1;
- this.width = !this.horizontal ? this._height : this._width;
- this._xscale = this._yscale = 100;
- this.setScrollPosition(0);
- this.tabEnabled = false;
- if(this._targetInstanceName.length > 0)
- {
- this.setScrollTarget(this._parent[this._targetInstanceName]);
- }
- this.tabChildren = false;
- this.setSize(this.width);
- };
- FScrollBarClass.prototype = new FUIComponentClass();
- FScrollBarClass;
- "prototype";
-