Code :
// stop the main timeline stop(); // stop the hangman movie clip timeline hangman_mc.stop(); // hide the game interface interface_mc._visible = false; tema_mc._visible = false; // initialize array of words animales = new Array("gato", "perro", "rana", "pez", "pajaro", "hamster", "raton", "vaca", "pollo", "cerdo" ); deportes = new Array("futbol", "rugby", "escalada", "natacion", "ciclismo", "atletismo", "esqui", "equitacion" ); wordlist = new Array(); // initialize arrays for letters lettersNeeded = new Array(); lettersGuessed = new Array();
|