Image click event
<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Canvas id="myCanvas" height="200" width="200" borderStyle="solid" backgroundColor="white"> <mx:Image height="50" width="50" x="100" y="10" source="@Embed(source='logo.jpg')" click="navigateToURL(new URLRequest('http://google.com'))" /> </mx:Canvas> </mx:Application>