Ver Mensaje Individual
  #7 (permalink)  
Antiguo 11/06/2011, 20:17
Avatar de yefranjo77
yefranjo77
 
Fecha de Ingreso: febrero-2008
Ubicación: Aragua - Venezuela
Mensajes: 312
Antigüedad: 16 años, 9 meses
Puntos: 1
Respuesta: crear boton de scroll

Bueno he logrado lo que queria.

el boton up lo programe asi:

Código:
on(press){
	delete this.onEnterFrame;
	this.play();
}
on(release){
	this.gotoAndStop();
	this.stop();
}
on (keyPress "<Up>"){
	prevFrame();
}
el boton down lo programe de esta manera:

Código:
on (press) {
	this.onEnterFrame = function() {
	if (this._currentframe>1) {
		 this.prevFrame();
		}
	};
}
on(release){
	this.onEnterFrame = function() {
	if (this._currentframe>1) {
		 this.stop();
	}
	}
}
on (keyPress "<Down>"){
	nextFrame();
}
el resultado es este:

https://rapidshare.com/files/3612489828/prueba.fla

le doy las gracias a Bandit que aporto una gran ayuda y me encamino en la solucion de este ejercicio...

Espero que les sirva de ayuda este ejercicio.
__________________
"Un punto importante para lograr nuestras metas es tener paciencia"