Sound Question

FastaKilla How do you play a sound just once (like the score sound, #900)? I have

(send gTheMusic:
          prevSignal(0)
          stop()
          number(900)
          loop(-1)
          play()
)

but it plays it over and over. How can I get it to play just once, then go back to playing the earlier music?
mr-t (send gTheMusic:
prevSignal(0)
stop()
number(900)
loop(0)
play()
)


should help you :)