- Home
- Categorie
- Digital Marketing
- Grafica, Visual Design & UX
- Problema volume tasto audio
-
Problema volume tasto audio
onLoad.PulsanteOn._visible=false
Suono = new Sound ();
Suono.loadSound("Scorpions - Mortal Kombat Theme.mp3",true);
Suono.onSoundComplete = function () {
Suono.loadSound("Scorpions - Mortal Kombat Theme.mp3",true);
}
PulsanteOff.onRelease=function(){
Suono.setVolume(0)
PulsanteOff._visible=false
PulsanteOn._visible=true
}
PulsanteOn.onRelease=function(){
Suono.setVolume(35);
PulsanteOff._visible=true
PulsanteOn._visible=false
-
Ciao jetax, qualche riga di commento che descriva il problema?
-
Ops scusami non ha inserito il problema.
All'inizio la muscia parte troppo alta, poi se stoppo e poi riparto allora poi è bassa come è stata impostata nel codice (35)
come faccio???
-
Prova così
onLoad.PulsanteOn._visible=false Suono = new Sound (); Suono.loadSound("brano.mp3",true); Suono.setVolume(35) Suono.onSoundComplete = function () { Suono.loadSound("brano.mp3",true); } PulsanteOff.onRelease=function(){ Suono.setVolume(0) PulsanteOff._visible=false PulsanteOn._visible=true } PulsanteOn.onRelease=function(){ Suono.setVolume(35); PulsanteOff._visible=true PulsanteOn._visible=false }
-
grazieeeeeeeeeeeeeee
-
Di niente se ho intuito le tue intenzioni credo che debba togliere onLoad da questa stringa
onLoad.PulsanteOn._visible=false
-
Ho aggiunto il codice set volume e ora va bene...il volume è basso e decido io anche all'inizio