home *** CD-ROM | disk | FTP | other *** search
- head.eye.gotoAndPlay("blink");
- head.hair.gotoAndPlay("bounce");
- if(action == "reset")
- {
- with(_parent)
- {
- ReadPuzzle(chooser.levelnum);
- ShowPuzzle();
- }
- }
- else if(action == "random")
- {
- with(_parent)
- {
- do
- {
- newlevel = random(50) + 1;
- }
- while(newlevel == chooser.levelnum);
-
- chooser.levelnum = newlevel - 1;
- chooser.gotoAndPlay("next");
- }
- }
- else if(action == "solve")
- {
- _parent.SolvePuzzle();
- _parent.solver.play();
- }
- else if(action == "help")
- {
- _parent.gotoAndPlay("help");
- }
-