If I have a SoundEffect in the Declarations of a MXML component and play it in Actionscript, no sound is played:
<mx:SoundEffect id="mySound" source="@Embed(source='assets/sounds/my_sound.mp3')" />
Actionscript Code:
mySound.play();
Is that supposed to happen and if so, is there a way to play a mx:SoundEffect in Actionscript?