The basic idea of this script is to start and stop sound using the key 'm' and the status of the sound in slot 1 (Sound in slot 1 plays all the time) but the below script won't work for some reason unknown to me but
it does work if i use two different keypresses ie 'm' and 'n' for the 2 if statements. Is there a problem with using a single key to carry out two different actions in Lingo or have i done something wrong?
on keyDown
if the key = "m" and sound(1).status = 3 then
sound(1).pause()
sound(2).pause()
sound(3).pause()
sound(4).pause()
end if
if the key = "m" and sound(1).status = 4 then
sound(1).play()
sound(2).play()
sound(3).play()
sound(4).play()
end if
end keyDown
Thanks Graham any help would be appreciated, Thanks.
One little change should make it work.
on keyDown
if the key = "m" and sound(1).status = 3 then
sound(1).pause()
sound(2).pause()
sound(3).pause()
sound(4).pause()
else if the key = "m" and sound(1).status = 4 then
sound(1).play()
sound(2).play()
sound(3).play()
sound(4).play()
end if
end keyDown
North America
Europe, Middle East and Africa
Asia Pacific