home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 127 / MOBICLIC127.ISO / mac / DATA / DSS127 / DSS127_02 / DSS127_02.swf / scripts / frame_436 / DoAction.as
Text File  |  2010-09-13  |  489b  |  23 lines

  1. var nom_du_son = "02_08";
  2. joueSon({nomSon:nom_du_son,actionFin:"RIEN"});
  3. BT_APPEL.onRollOver = function()
  4. {
  5.    gereCursor(2);
  6.    joueBruitage({nomSon:"B_APPEL"});
  7.    this.gotoAndStop("E2");
  8. };
  9. BT_APPEL.onRollOut = function()
  10. {
  11.    gereCursor(1);
  12.    stopBruitage({nomSon:"_APPEL"});
  13.    this.gotoAndStop("E1");
  14. };
  15. BT_APPEL.onPress = function()
  16. {
  17.    gereCursor(1);
  18.    this.gotoAndStop("E3");
  19.    stopBruitage({nomSon:"B_APPEL"});
  20.    _root.gotoAndStop("TEL_A");
  21. };
  22. stop();
  23.