No se si va aquí, bueno despúes algún MOD lo cambiará de lugar. El asunto es sencillo, vamos a crear una pelicula SWF con control de volumen a tráves de AS. 1° Añadir a la libreria un sonido, una vez en la librería presionar botín derecho de mouse y elegir la opción "Vinculación". 2° Dar click en la opción: "Exportar para ActionScript". 3° En el campo "Identificador", colocar un nombre, en este caso "sonido" y luego aceptar loko 4° Crear 2 botones uno que diga pausa y otro que diga play, y otorgarle un nombre de instancia a cada uno de ellos, en este caso btn_off y btn_on loko. 5° Pegar este código de AS en el primer Frame. Insertar CODE, HTML o PHP: /// esto es el volumen this.createTextField("volume_txt", 10, 30, 30, 200, 20); volume_mc.top = volume_mc._y; volume_mc.bottom = volume_mc._y; volume_mc.left = volume_mc._x; volume_mc.right = volume_mc._x + 100; volume_mc._x += 100; volume_mc.handle_btn.onPress = function() { startDrag(this._parent, false, this._parent.left, this._parent.top, this._parent.right, this._parent.bottom); }; volume_mc.handle_btn.onRelease = function() { stopDrag(); var level:Number = Math.ceil(this._parent._x - this._parent.left); this._parent._parent.song_sound.setVolume(level); this._parent._parent.volume_txt.text = level; }; volume_mc.handle_btn.onReleaseOutside = slider_mc.handle_btn.onRelease; //////////////// Aquí las acciones de los botones var song_sound:Sound = new Sound(); song_sound.attachSound("sonido"); btn_on.onRelease = function() { song_sound.start(); }; btn_off.onRelease = function() { song_sound.stop(); }; 6° Publicar...y listo.