02
Mar
08

Setting a custom broken image skin for the Image control in Flex

The following example shows how you can set a custom broken image skin for the Flex Image control by setting the brokenImageSkin style.

Full code after the jump.

View MXML

<?xml version="1.0"?>
<!-- http://blog.flexexamples.com/2008/03/02/setting-a-custom-broken-image-skin-for-the-image-control-in-flex/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <mx:Script>
        <![CDATA[
            import mx.controls.Alert;

            private var alert:Alert;

            private function image_ioError(evt:IOErrorEvent):void {
                alert = Alert.show(evt.text, evt.type);
            }

            private function loadImage(src:String):void {
                image.source = src;
            }
        ]]>
    </mx:Script>

    <mx:Style>
        Image {
            brokenImageSkin: Embed("assets/flex_logo.jpg");
        }
    </mx:Style>

    <mx:ApplicationControlBar dock="true">
        <mx:Button label="Good"
                click="loadImage('assets/flashplayer_icon.jpg');" />
        <mx:Button label="Bad"
                click="loadImage('assets/404.gif');" />
    </mx:ApplicationControlBar>

    <mx:Image id="image"
            maintainAspectRatio="true"
            scaleContent="false"
            width="200"
            height="200"
            ioError="image_ioError(event);" />

</mx:Application>

View source is enabled in the following example.


1 Response to “Setting a custom broken image skin for the Image control in Flex”


  1. 1 Michael Mar 3rd, 2008 at 2:13 am

    Very nice blog! Keep up the good work!

Leave a Reply

This blog is terrible at eating HTML tags. If you plan on posting code/XML, please escape your "<" characters as "&lt;" and your ">" characters as "&gt;".