AS Name |
Definition |
|---|---|
| cDimCheck() : Void | Checks the dimensions of the scrolling area in order to resize the scrollbars. If the "autoCheckDim" is set to false, the function will occur only once. |
| hScrollTo(p: Number) : Void | Horizontal scroll till p percent of the content |
| scroll(direction: String, fast: Boolean, delay: Number, distance: Number or '') : Void | Scrolls in the specified direction till the end of the document; the disabled "fast" parameter will force the merhod use the "distance" parameter. The "delay" refers to the amount of miliseconds that will stop the continous scrolling. "Distance" means an amount of pixels used with disabled "fast" |
| scrollDown(fast: Boolean, distance: Number) : Void | Scrolls downwards with the distance amount |
| scrollLeft(fast: Boolean, distance: Number) : Void | Scrolls left with the distance amount |
| scrollRight(fast: Boolean, distance: Number) : Void | Scrolls right for with the distance amount |
| scrollUp(fast: Boolean, distance: Number) : Void | Scrolls upwards with the distance amount |
| startHScroll(distance: Number) : Void | Scrolls horizontally with the distance amount and keeps scrolling if the button is not released |
| startVScroll(distance: Number) : Void | Scrolls vertically with the distance amount and keeps scrolling if the button is not released |
| stepScroll(direction: String, distance: Number) : Void | Scrolls in the specified direction for a given number of pixels. |
| stopHScrolling() : Void | Stops any continuous horizontal scrolling started with any of the above functions |
| stopVScrolling() : Void | Stops any continuous vertical scrolling started with any of the above functions |
| vScrollTo(p: Number) : Void | Vertical scroll till p percent of the content |