12
Mar
08

Setting the border alpha on a Panel container in Flex

The following example shows how you can set the border alpha on a Flex Panel container by setting the borderAlpha style.

Full code after the jump.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/03/12/setting-the-border-alpha-on-a-panel-container-in-flex/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        creationComplete="init();">

    <mx:Style>
        Application {
            backgroundColor: red;
            backgroundGradientColors: red, black;
        }
    </mx:Style>

    <mx:Script>
        <![CDATA[
            import mx.events.SliderEvent;

            private function init():void {
                slider.value = panel.getStyle("borderAlpha");
            }

            private function slider_change(evt:SliderEvent):void {
                panel.setStyle("borderAlpha", evt.value);
            }
        ]]>
    </mx:Script>

    <mx:ApplicationControlBar dock="true">
        <mx:Label text="borderAlpha:" />
        <mx:HSlider id="slider"
                minimum="0.0"
                maximum="1.0"
                liveDragging="true"
                snapInterval="0.1"
                tickInterval="0.1"
                change="slider_change(event);" />
    </mx:ApplicationControlBar>

    <mx:Panel id="panel" title="Panel" width="100%" height="100%">
        <mx:ControlBar>
            <mx:Label text="ControlBar" />
        </mx:ControlBar>
    </mx:Panel>

</mx:Application>

View source is enabled in the following example.

For an example on setting the Panel container’s background alpha, see “Setting the background alpha on a Panel container in Flex”.


1 Response to “Setting the border alpha on a Panel container in Flex”


  1. 1 Marko Mar 16th, 2008 at 4:05 pm

    Nice one, thanks!

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;".