Sound loop

Hi,
i was able to put sound on the flash page by linking them and by using the following script:

lib=new Sound();

lib.attachSound(“lib01”);
_root.lib.start(0,999);

but after the sound plays it loops again…how do i stop this loop

well then you do not want to loop it 999 times as you are doing now!

lib=new Sound();

lib.attachSound(“lib01”);
_root.lib.start(0,1);