Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sound queue help!!! URGENT!

Status
Not open for further replies.

tonyngu

Programmer
Dec 17, 2000
15
MY
Hello,

I want to play multiple wav file in different channel. Let's say the wav in channel 1 is 5.1 sec and 2.3 sec in channel 2. Channel 1 is first playing, until it reachs it's 4.7 sec then only the wav in channel 2 start playing. How can I do that?
Any help would be greatly appreciated!

Regards,
Tony
 
on eventtoplaysound1
global timerstart
puppetsound 1, soundname
timerstartedat = the milliseconds

end

on exitframe
gobal timerstart
if the milliseconds >= timerstart + 4700 (4.7 seconds) then
puppetsound 2, soundname
end if
end


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top