home *** CD-ROM | disk | FTP | other *** search
- function sss(a)
- {
- var v = a.ss.getVolume();
- if(v >= 100)
- {
- clearInterval(a.it);
- }
- else
- {
- a.ss.setVolume(v + 3);
- }
- }
- this.ss = new Sound(this);
- this.ss.attachSound("muza");
- this.ss.setVolume(0);
- this.ss.start(0,100000);
- this.it = setInterval(sss,33,this);
-