Author Topic: Sound Question  (Read 1857 times)

0 Members and 1 Guest are viewing this topic.

Offline FastaKilla

Sound Question
« on: May 22, 2003, 09:32:52 PM »
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?


I don't have a homepage, but I have this
http://www.gamefaqs.com/features/recognition/19253.html

Offline Te Rangi

Re:Sound Question
« Reply #1 on: May 22, 2003, 09:43:10 PM »
Code: [Select]
(send gTheMusic:
                 prevSignal(0)
                 stop()
                 number(900)
                 loop(0)
                 play()
)

should help you :)


SMF 2.0.19 | SMF © 2021, Simple Machines
Simple Audio Video Embedder

Page created in 0.062 seconds with 21 queries.