I'm working on a director project which gives me problems with playing sounds. They don't. I'm using Internal mp3 files (short ones, a few seconds), that need to play on mouse-actions, and I use the standard sound(1).play(member("blabla")) stuff. Problem is that it won't play any sound, and it won't give me any error.
I even made a small test movie, with only one button and a mouseup, to be sure there is nothing wrong with the code on my other movie (there is some if..then stuff there). This movie consist of one button with the following behavior attached:
Code:
on mouseUp me
sound(1).queue(member("Siren"))
sound(1).play()
end
As you might see this is the standard example from the help files, I even changed the name of my sound so it's exactly the same as in the example. doesn't get simpler than this! Still gives me the same problem.
This is all on a iMac G5 with 768mb, running 10.3.9 and mx2004, so speed or ram shouldn't be an issue.
I'm out of options. Could anybody give me some insight on why this happens and maybe help me out or give a workaround?