Forum de discussion
Forum « Flash et Shockwave » (archives)
problème OnLoad a la publication
Envoyé: 26 septembre 2004, 7h07 par blues
function F_Playsound(Phrase) {
Son = Phrase+".mp3";
sono = new Sound(_root.Cl_Vocal);
sono.loadSound(Son, false);
sono.onSoundComplete = function() {
Talk = false;
delete _root.Cl_Vocal.onEnterFrame;
};
sono.onLoad = function(succès) {
_root.Txt = succès;
sono.setVolume(100);
sono.start();
NPhrase = _root[Phrase];
StepVoice = Math.round(sono.duration/NPhrase.length);
Talk = true;
_root.Cl_Vocal.onEnterFrame = function() {
Char = Math.round(sono.position/StepVoice);
CurrentChar = NPhrase.charAt(Char);
NbLip = Phonemes.indice(CurrentChar);
};
};
}
et cela marche très bien que je test mon anim directement a partir de flash, mais l'événement on load n'est pas pris en compte une fois que je test le swf en dehors du fla
Bizar ! y'a il une explication ??
Réponses
|