/ Published in: ActionScript
creando un objeto de la clase sound y tocandola con un boton
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var misonido:sound = new sound(); misonido.attachSound("file.wav"); violeta_btn.onPress=function(){ misonido.start(); }