home *** CD-ROM | disk | FTP | other *** search
- if(_root.mainStageToShow == "volume")
- {
- _root.switchTV(true);
- _root.contentHider.hider.gotoAndPlay("showVolume");
- if(_root.upper)
- {
- _root.content1.play();
- _root.content2._visible = false;
- }
- else
- {
- _root.content2.play();
- _root.content1._visible = false;
- }
- _root.upper = !_root.upper;
- }
- else if(_root.mainStageToShow == "misc")
- {
- _root.switchTV(false);
- _root.contentHider.hider.gotoAndPlay("showMisc");
- if(_root.upper)
- {
- _root.content1.play();
- _root.content2._visible = false;
- }
- else
- {
- _root.content2.play();
- _root.content1._visible = false;
- }
- _root.upper = !_root.upper;
- }
- else
- {
- trace("ERROR - nothing to show = " + _root.mainStageToShow);
- }
- stop();
-