Traduction

Fermé
Delsol Messages postés 1 Date d'inscription vendredi 6 juin 2008 Statut Membre Dernière intervention 6 juin 2008 - 6 juin 2008 à 23:56
onesdf Messages postés 375 Date d'inscription mercredi 21 mai 2008 Statut Membre Dernière intervention 17 octobre 2008 - 7 juin 2008 à 00:03
Bonjour,
Quelqu'un pourrai me traduire ce ci s'il vous plait .
pcharger = this.getBytesLoaded();
ptotal = this.getBytesTotal();
rapport = pcharger / ptotal;
_root.pourcent.text = Math.ceil(rapport * 100) + ' %';
if (rapport == 1)
{
gotoAndPlay(2);
}

1 réponse

onesdf Messages postés 375 Date d'inscription mercredi 21 mai 2008 Statut Membre Dernière intervention 17 octobre 2008 120
7 juin 2008 à 00:03
Ca ressemble fort à une progression de téléchargement

pcharger = this.getBytesLoaded(); donne le nombre de bytes récupérés sur le fichier
ptotal = this.getBytesTotal(); donne le nombre total de bytes du fichier
rapport = pcharger / ptotal; effectue un ratio
_root.pourcent.text = Math.ceil(rapport * 100) + ' %'; affiche le %age dans une zone de texte
if (rapport == 1) téléchargement fini
{
gotoAndPlay(2); jouer le fichier
}
0