Mira aca tenes el codigo que habia hecho.. en vez de ser un boton de flecha lo que hice es un movie clip (o sea flecha) , que al pasarle el mouse se activaba
Código:
onClipEvent (enterFrame) {
velocidad=7;
if(_root.b1._x<380){
if(hitTest(_root._xmouse, _root._ymouse, true)==true){
_root.b1._x+=velocidad;
_root.b2._x+=velocidad;
_root.b3._x+=velocidad;
_root.b4._x+=velocidad;
_root.b5._x+=velocidad;
_root.b6._x+=velocidad;
_root.b7._x+=velocidad;
}
}
}
y este otro era para "invisibilizar" los botones cuando salian del cuadro
Código:
_root.onEnterFrame = function() {
_root.vari.text=_root.b1._x;
if(_root.b1._x>270 && _root.b1._x<588){_root.b1._visible=true;}else{_root.b1._visible=false;}
if(_root.b2._x>270 && _root.b2._x<588){_root.b2._visible=true;}else{_root.b2._visible=false;}
if(_root.b3._x>270 && _root.b3._x<588){_root.b3._visible=true;}else{_root.b3._visible=false;}
if(_root.b4._x>270 && _root.b4._x<588){_root.b4._visible=true;}else{_root.b4._visible=false;}
if(_root.b5._x>270 && _root.b5._x<588){_root.b5._visible=true;}else{_root.b5._visible=false;}
}
que lo podes hace con algun hittest, tambien
yo usaba 5 botones fijos, pero si tenes mas por ahi podes hacerlo con botones dinamicos, usando un with
(yo de aragan copie y pegue)
bueno espero que te sirva.....
chauuuu