Foros del Web » Creando para Internet » Flash y Actionscript »

Scroll con rueda raton

Estas en el tema de Scroll con rueda raton en el foro de Flash y Actionscript en Foros del Web. Hola a todos: Tengo un scroll y quisiera saber que codigo metrle para que me funcione tambien con la rueda de raton. Esto es lo ...
  #1 (permalink)  
Antiguo 28/10/2009, 01:53
 
Fecha de Ingreso: octubre-2009
Mensajes: 20
Antigüedad: 15 años
Puntos: 0
Scroll con rueda raton

Hola a todos:
Tengo un scroll y quisiera saber que codigo metrle para que me funcione tambien con la rueda de raton.
Esto es lo que tengo hasta ahora:

onClipEvent(load){
var objetivo:String = _parent.mi_objetivo;//entre comillas aquí escribe
var sostenido:Boolean = false;
var razon:Number = this._parent._parent[objetivo]._height / this._height;
var deslizar:Number;
razon = int(razon);
}

on(press){
startDrag(this, false, this._parent.barra._x, this._parent.barra._y, this._parent.barra._x + this._parent.barra._width, this._parent.barra._y + this._parent.barra._height - this._height);
this.sostenido = true;
}

on(release){
stopDrag();
this.sostenido = false;
}

onClipEvent(mouseMove){
if(this.sostenido){
deslizar = (this._y - this._parent.barra._y);
deslizar = int(deslizar);
this._parent._parent[objetivo]._y = -(razon * deslizar) / 2;
}
}
  #2 (permalink)  
Antiguo 28/10/2009, 18:05
kzy
 
Fecha de Ingreso: agosto-2009
Mensajes: 10
Antigüedad: 15 años, 2 meses
Puntos: 0
Respuesta: Scroll con rueda raton

Checa esto alomejor te sirva,,
Es de scroll que tambien funciona con la rueda..

w w w . cristalab . c o m/tips/como-crear-un-scrollbar-con-easing-en-flash-c44339l/
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 23:02.