Hi
Can I know how do i get a smooth scroll bar like the one
in IE.
Thanks.
Hi
Can I know how do i get a smooth scroll bar like the one
in IE.
Thanks.
use the flash component?
I don’t know why but there are people coplaining about the component. A friend asked me to write a scrollbar function, here it is (hope it helps, but it does not have any scrollbuttons (they are easy to add though)
var iInitPos = Content._y;
btnDrag.onPress = function() {
var iDragSize = 210
startDrag(this, false, 0, 0, 0, iDragSize);
this.onEnterFrame = function() {
var iPercent = this._y/iDragSize ;
var iJuego = Content._height-Mask._height;
var pos = iInitPos-(iJuego*iPercent);
Content._y = pos;
};
};
btnDrag.onRelease = function() {
stopDrag();
this.onEnterFrame = null;
};