> Some systems are incapable of using direct sound. It is machine dependent.
>
> try this:
>
> on startMovie
> set the soundDevice = "MacroMix"
> end on startMovie
>
> You might want to read more in the Director 8 manuals about the innate
> "Macromix" function. Software drive channels as opposed to hardware.
Never throw out the baby with the bath water. You only need to use macromix
on machines that don't support direct sound, and it's certainly preferable
to use direct sound if available.
on startMovie
if the soundDeviceList.getPos("directSound") = 0 then
the soundDevice = "MacroMix"
end if
end
-Kurt
[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!]