Hi:
I am trying to add sounds to my app. I have imported
mx.core.SoundAsset and flash.media.*, and am trying to embed the files
like this:
[Embed('soundfx/oleLogin.mp3')]
private var oleLogin_mp3:Class;
private var oleLogin:SoundAsset = new oleLogin_mp3() as SoundAsset;
The correct files are in the soundfx folder and the path is correct. I
have verified that they all play using QuickTime.
However, when I try to run the app I get this error for each mp3 file:
unable to transcode soundfx/oleLogin.mp3
What do I need to do to correct this issue?
a