tengo un codigo y quiero pasar el scroll de vertical a horizontal...pero no encuentro la forma...
alguien sabe o tiene una idea como hacerlo?
Código :
th_nav.setMask(theMask);
csillapitas = 14;
pos = 0;
dragger._x = theMask._width;
dragger.onPress = function() {
startDrag(this, false, this._x, 0, this._x, theMask._height-this._height);
mehet();
};
dragger.onRelease = dragger.onReleaseOutside=function () {
stopDrag();
};
function mehet() {
th_nav.onEnterFrame = function() {
tavolsag = (this._height-(theMask._height/1.3))/(theMask._height-dragger._height);
pos = -dragger._y*tavolsag;
this._y -= (this._y-pos)/csillapitas;
};
}gracias[/code]
