> suppose after completion of a project if i just write in a
> movie script "set my sound device to "qt3mix"", will it be
> able to switch the sound device to qt3.

Are you just asking whether the soundDevice property is writable? It is:

on switchSoundDevice deviceIWant
  -- avoid redundancy
  if the soundDevice = deviceIWant then return TRUE
  -- See if deviceIWant is available
  if the soundDeviceList.getOne( deviceIWant ) then
    the soundDevice = deviceIWant
  else
    alert "ERROR #switchSoundDevice:" && deviceIWant && "is
unavailable."
    return FALSE
  end if
  return TRUE
end

It doesn't need to be done from a movie script; you cand do it from
anywhere, including the Message window.

put switchSoundDevice( "QT3Mix" )
-- 1

HTH
Rob

/*********************************
* Rob Wingate, Software Human    *
* http://www.vingage.com         *
* mailto:[EMAIL PROTECTED] *
*********************************/

[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!]

Reply via email to