ID:175970
 
How can I set up and intro screen with music playing to the user? Ive got the intro screen to work but the music doesnt play. Please help.
src << 'music file'

that's how you play music. if that doesn't work then you are using it in the wrong place. post a bit of your code if that happens and maybe we can be a little more specific.

Canar
In response to Canar
Ah thanks, that sorted the problem straight away.
In response to Canar
Canar wrote:
src << 'music file'

that's how you play music. if that doesn't work then you are using it in the wrong place. post a bit of your code if that happens and maybe we can be a little more specific.

Canar

You can also play music like this:
src<<sound('music.wav')

if you want it to play over and over

src<<sound('music.wav',1)


RaeKwon