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