Hello all
With much help from people here on the list I have created 2 volume
control buttons - volumeplus and volumeminus using these scripts:
on startMovie
global vol
set vol to 4
set the soundLevel to vol
end
-- for volume [ + ]
on mouseUp
global vol
if vol < 7 then
set vol to vol + 1
set the soundLevel to vol
end if
end
-- for volume [ - ]
on mouseUp
global vol
if vol > 0 then
set vol to vol - 1
set the soundLevel to vol
end if
end
This works on the macs I have tested on but does not work on the PCs I
have tested. The sound plays in both the project and the QTs in the
project but the volume control buttons have no effect at all.
What am I missing?
Do I need some kind if .INI file to check/set the sound device on PC?
Any help would be graetly appreciated. Thanks
Miriana
[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!]