>on beginsprite me
> if soundBusy(1) then sound(1).stop()
> sound(1).queue([#member: member("prog_intro")]) --79
> sound(1).play()
>end
Perhaps setting a flag and doing the sound on exitframe would help.
That way any sprites that have media loading won't be fighting with
the playing of the sound. Also, no need to check soundbusy(1) really.
Something like this:
property playedyet
on beginsprite me
sound(1).stop()
playedyet = false
end
on exitframe
if not playedyet then
playedyet = true
sound(1).queue([#member: member("prog_intro")])
sound(1).play()
end if
end
--
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list,
email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo. Thanks!]
- RE: <lingo-l> Export image as jp... Al Hospers
- Re: <lingo-l> Export image ... R. Bhakti Klein
- <lingo-l> SW3D antialiasing??? Andreas Gaunitz
- Re: <lingo-l> SW3D antialiasing??? Colin Holgate
- Re: <lingo-l> SW3D antialiasing??? Andreas Gaunitz
- Re: <lingo-l> SW3D antialiasing??? Andreas Gaunitz
- Re: <lingo-l> SW3D antialiasing??? Terry R. Schussler
- <lingo-l> Shockwave knows stuff about the ht... Andreas Gaunitz
- Re: <lingo-l> mac having trouble dealing with scr... nick stevenson
- <lingo-l> Need help with audio hiccuping! Mike Hiatt
- RE: <lingo-l> Need help with audio hiccu... Colin Holgate
- RE: <lingo-l> Need help with audio h... Mike Hiatt
- RE: <lingo-l> Need help with aud... Colin Holgate
- RE: <lingo-l> Need help with audio hiccu... Alexandre Cop
- RE: <lingo-l> Need help with audio h... Buzz Kettles
