Hi, can anyone please help me with the mouseUp script for swapping sprites? I have a pause button named pause I would like to swap to a resume button named resume on mouseUp. So far I have cursor change and rollover change behaviors from the library for the Pause button as well as this behavior that controls the pause:
on mouseUp me
go to the frame
if sound(1).status = 3 then
sound(1).pause()
else
sound(1).play()
end if
if sound(2).status = 3 then
sound(2).pause()
else
sound(2).play()
end if
end
Thanks in advance for any help.
Cheers~Frank
on mouseUp me
go to the frame
if sound(1).status = 3 then
sound(1).pause()
else
sound(1).play()
end if
if sound(2).status = 3 then
sound(2).pause()
else
sound(2).play()
end if
end
Thanks in advance for any help.
Cheers~Frank