20/09/2007, 17:18
|
| Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 6 meses Puntos: 406 | |
Re: volumen con barita y slider Hola budoukai:
El MC que contine la línea y la barrita al ponerlo en el escenario colócale como nombre de instancia: barra.
Adiciónale éste código a tu código del primer frame:
barra.volumen_btn._y = -50;
barra.volumen_btn.onEnterFrame = function() {
misonido.setVolume(0-this._y);
};
barra.volumen_btn.onPress = function() {
startDrag(this, false, this._x, -98, this._x, 0);
};
barra.volumen_btn.onRelease = barra.volumen_btn.onReleaseOutside=function () {
stopDrag();
};
stop();
Espero haberte sido de ayuda. |