music player in flash 8

DANCER77

Nuovo Utente
10 Mag 2008
3
0
0
ciao a tutti!

ho costruito un sito dove ho inserito un music player!
quando vado a spegnerlo per vedere un video nella Pagina che ho richiamato, anche l'audio del video si spegne...qualcuno mi sa dire se devo inserire un codice particolare per farlo funzionare?
 
ciao a tutti!

ho costruito un sito dove ho inserito un music player!
quando vado a spegnerlo per vedere un video nella Pagina che ho richiamato, anche l'audio del video si spegne...qualcuno mi sa dire se devo inserire un codice particolare per farlo funzionare?

dipende da come hai costruito il player....e come ottieni lo spegnimento.
comunque se la pagina del video è diversa da quella dove c'è il player dovrebbe spegnersi automaticamente....
 
grazie mille per la risposta...è un semplice pulsante on/off


il codeice che ho messo è questo!

onClipEvent (load) {
_root.soundstatus = "on";
_root.mySound = new Sound(_level0);
_root.mySound2 = new Sound(_level1);
_root.mySound3 = new Sound(_level2);
_root.mySound4 = new Sound(_level3);
_root.mySound5 = new Sound(_level4);
maxvolume = 100;
minvolume = 0;
}
onClipEvent (enterFrame) {
if (_root.soundstatus == "on") {
step = 5;
}
if (_root.soundstatus == "off") {
step = -5;
}
maxvolume += step;
if (maxvolume > 100) {
maxvolume = 100;
}
if (maxvolume < 0) {
maxvolume = 0;
}
_root.mySound.setVolume(maxvolume);
_root.mySound2.setVolume(maxvolume);
_root.mySound3.setVolume(maxvolume);
_root.mySound4.setVolume(maxvolume);
_root.mySound5.setVolume(maxvolume);
}
 

Discussioni simili