home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 90 / PIWD90.iso / mac / contents / flash_gaming / tutorial_files / Pages70-80 / STEP48.TXT < prev    next >
Text File  |  2003-12-22  |  3KB  |  159 lines

  1. on (release) {
  2.  
  3.     _root.guessCount+=1;
  4.  
  5.     _root.thisGuess=false;
  6.  
  7.     _root.nameSelected = _root.namelist.getSelectedItem().label;
  8.  
  9.     for (i=0; i<=8; i++) {
  10.  
  11.         if(_root.currentGuess[i] == _root.nameSelected){
  12.  
  13.             _root.nextFrame();
  14.  
  15.             _root.thisGuess=true;
  16.  
  17.         }
  18.  
  19.     }
  20.  
  21.     if(_root.thisGuess == false){
  22.  
  23.         _root.message="No, not "+_root.nameSelected;
  24.  
  25.         for (k=0; k<=8; k++) {
  26.  
  27.             if (myArraya[k] == _root.nameSelected && _root.head1._visible==true) {
  28.  
  29.                 _root.head1._visible=false;
  30.  
  31.                 _root.head1InPlay=false;
  32.  
  33.             }
  34.  
  35.             if (myArrayb[k] == _root.nameSelected && _root.head2._visible==true) {
  36.  
  37.                 _root.head2._visible=false;
  38.  
  39.                 _root.head2InPlay=false;
  40.  
  41.             }
  42.  
  43.             if (myArrayc[k] == _root.nameSelected && _root.head3._visible==true) {
  44.  
  45.                 _root.head3._visible=false;
  46.  
  47.                 _root.head3InPlay=false;
  48.  
  49.             }
  50.  
  51.             if (myArrayd[k] == _root.nameSelected && _root.head4._visible==true) {
  52.  
  53.                 _root.head4._visible=false;
  54.  
  55.                 _root.head4InPlay=false;
  56.  
  57.             }
  58.  
  59.             if (myArraye[k] == _root.nameSelected && _root.head5._visible==true) {
  60.  
  61.                 _root.head5._visible=false;
  62.  
  63.                 _root.head5InPlay=false;
  64.  
  65.             }
  66.  
  67.             if (myArrayf[k] == _root.nameSelected && _root.head6._visible==true) {
  68.  
  69.                 _root.head6._visible=false;
  70.  
  71.                 _root.head6InPlay=false;
  72.  
  73.             }
  74.  
  75.             if (myArrayg[k] == _root.nameSelected && _root.head7._visible==true) {
  76.  
  77.                 _root.head7._visible=false;
  78.  
  79.                 _root.head7InPlay=false;
  80.  
  81.             }
  82.  
  83.             if (myArrayh[k] == _root.nameSelected && _root.head8._visible==true) {
  84.  
  85.                 _root.head8._visible=false;
  86.  
  87.                 _root.head8InPlay=false;
  88.  
  89.             }
  90.  
  91.             if (myArrayi[k] == _root.nameSelected && _root.head9._visible==true) {
  92.  
  93.                 _root.head9._visible=false;
  94.  
  95.                 _root.head9InPlay=false;
  96.  
  97.             }
  98.  
  99.             if (myArrayj[k] == _root.nameSelected && _root.head10._visible==true) {
  100.  
  101.                 _root.head10._visible=false;
  102.  
  103.                 _root.head10InPlay=false;
  104.  
  105.             }
  106.  
  107.             if (myArrayk[k] == _root.nameSelected && _root.head11._visible==true) {
  108.  
  109.                 _root.head11._visible=false;
  110.  
  111.                 _root.head11InPlay=false;
  112.  
  113.             }
  114.  
  115.             if (myArrayl[k] == _root.nameSelected && _root.head12._visible==true) {
  116.  
  117.                 _root.head12._visible=false;
  118.  
  119.                 _root.head12InPlay=false;
  120.  
  121.             }
  122.  
  123.             if (myArraym[k] == _root.nameSelected && _root.head13._visible==true) {
  124.  
  125.                 _root.head13._visible=false;
  126.  
  127.                 _root.head13InPlay=false;
  128.  
  129.             }
  130.  
  131.             if (myArrayn[k] == _root.nameSelected && _root.head14._visible==true) {
  132.  
  133.                 _root.head14._visible=false;
  134.  
  135.                 _root.head14InPlay=false;
  136.  
  137.             }
  138.  
  139.             if (myArrayo[k] == _root.nameSelected && _root.head15._visible==true) {
  140.  
  141.                 _root.head15._visible=false;
  142.  
  143.                 _root.head15InPlay=false;
  144.  
  145.             }
  146.  
  147.             if (myArrayp[k] == _root.nameSelected && _root.head16._visible==true) {
  148.  
  149.                 _root.head16._visible=false;
  150.  
  151.                 _root.head16InPlay=false;
  152.  
  153.             }
  154.  
  155.         }
  156.  
  157.     }
  158.  
  159. }