home *** CD-ROM | disk | FTP | other *** search
- _parent.titleMod.start(0,9999);
- _parent.titleMod.setVolume(0);
- _parent.titleMusicFlag = true;
- this.onEnterFrame = function()
- {
- var _loc1_ = _parent;
- if(_loc1_.titleMod.position == 0 or _loc1_.titleMod.position == _loc1_.titleMod.duration)
- {
- _loc1_.titleMod.start(0,9999);
- }
- var _loc2_ = _loc1_.titleMod.getVolume();
- if(_loc2_ < _loc1_._parent.masterVolume)
- {
- _loc2_ += 2;
- _loc1_.titleMod.setVolume(_loc2_);
- }
- else
- {
- _loc1_.titleMod.setVolume(100);
- delete this.onEnterFrame;
- }
- };
- playButton.onPress = function()
- {
- var _loc1_ = _parent;
- _loc1_.skipSFX.start();
- this.onEnterFrame = function()
- {
- var _loc1_ = _parent;
- var _loc2_ = _loc1_.titleMod.getVolume();
- if(_loc2_ > 0)
- {
- _loc2_ -= 10;
- _loc1_.titleMod.setVolume(_loc2_);
- }
- else
- {
- _loc1_.titleMusicFlag = false;
- _loc1_.titleMod.setVolume(0);
- _loc1_.titleMod.stop();
- delete this.onEnterFrame;
- _root.attract();
- }
- };
- };
- stop();
-