Add SoundEffect to Button mouse down effect : Button Effect « Components « Flex
- Flex
- Components
- Button Effect
Add SoundEffect to Button mouse down effect

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:SoundEffect id="clickSound" source="assets/click.MP3"/>
<mx:Button label="Click me" mouseDownEffect="{clickSound}"/>
</mx:Application>
Related examples in the same category