home *** CD-ROM | disk | FTP | other *** search
- function hide()
- {
- _parent.sound_UP_DOWN(true);
- this._visible = false;
- }
- function show()
- {
- _parent.sound_UP_DOWN(false);
- this._visible = true;
- }
- hide();
- this.refreshCub.onRelease = function()
- {
- if(!_root.level_complete)
- {
- _parent.oScene.refreshScene();
- }
- };
- this.undoCub.onRelease = function()
- {
- if(!_root.level_complete)
- {
- _parent.oScene.undo();
- }
- };
- endGames = function()
- {
- delete _parent.engine.onEnterFrame;
- _parent.oScene.deleteCub();
- hide();
- _parent.menu.showWon();
- };
- this.mainMenu.onRelease = function()
- {
- delete _parent.engine.onEnterFrame;
- _parent.oScene.deleteCub();
- hide();
- _parent.menu.showExit();
- };
-