[FLASH] Actionscript (mini jukebox)

Actionscript (mini jukebox) [FLASH] - Divers - Programmation

Marsh Posté le 28-12-2003 à 12:33:51    

Bonjour a tous,
j'ai donc essayé de faire un petit jukebox pour un site, mais j'ai qq problemes avec le bouton "avancer" (pour changer de musique, et non pas avancer dans la musique).
 

Code :
  1. /* ----- */
  2. firstSound = new Sound();
  3. tmp = false;
  4. var i = 0;
  5. Bouton Lecture
  6. on (press) {
  7. if (tmp==false) {
  8. firstSound.attachSound("booba1" );
  9. tmp=true;
  10. i=1;
  11. _root.firstSound.start(0,999);
  12. }
  13. }
  14. Bouton Avancer
  15. on (press) {
  16. if (i==1) {
  17.  i=2;
  18.  _root.firstSound.stop();
  19.  firstSound.attachSound("booba1" );
  20.  _root.firstSound.start(0,999);
  21. }
  22. if (i==2) {
  23.  i=3;
  24.  _root.firstSound.stop();
  25.  firstSound.attachSound("booba2" );
  26.  _root.firstSound.start(0,999);
  27. }
  28. if (i==3) {
  29.  i=1;
  30.  _root.firstSound.stop();
  31.  firstSound.attachSound("dre" );
  32.  _root.firstSound.start(0,999);
  33. }
  34. }


 
Mon probleme, est qu'il change qu'une fois de musique, et reste ensuite sur cette musique ("booba2" ). Il ne lit jamais "dre" ..
C'est la premiere fois que jutilise flash, c pour cela que jai qq peu du mal :D soyez indulgent avec moi :)
Si qq a une petite idée ca serait sympa!

Reply

Marsh Posté le 28-12-2003 à 12:33:51   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed