Setting the background alpha on a Panel container in Flex

by Peter deHaan on March 12, 2008

in Panel

In a previous example, “Setting the border alpha on a Panel container in Flex”, we saw how you could change a panel’s border alpha by setting the borderAlpha style.

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

Full code after the jump.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/03/12/setting-the-background-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("backgroundAlpha");
            }

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

    <mx:ApplicationControlBar dock="true">
        <mx:Label text="backgroundAlpha:" />
        <mx:HSlider id="slider"
                minimum="0.0"
                maximum="1.0"
                liveDragging="true"
                snapInterval="0.01"
                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.

You can also set the backgroundAlpha style in MXML, using the following snippet:

<mx:Panel title="Panel" backgroundAlpha="0.75">
...
</mx:Panel>

Or you can set the backgroundAlpha style in an external .CSS file or a <mx:Style /> block, as seen in the following snippet:

<mx:Style>
    Panel {
        backgroundAlpha: 0.75; /* 75% */
    }
</mx:Style>

{ 2 comments… read them below or add one }

1 aryan September 25, 2008 at 9:57 pm

<3 ur examples.
great demonstration

Reply

2 Derek December 23, 2008 at 10:08 am

How do you get it so that the part of the panel that holds the titleBar and controlBar is transparent? I want that part of the panel to just be white, straight up, but the area that holds the children will have its own styles

Reply

Leave a Comment

Sorry, this blog is terrible at eating HTML comments.
If you're pasting any HTML/XML/MXML code, you need to convert your < characters to &lt; and your > characters to &gt; .

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Anti-Spam Protection by WP-SpamFree

Previous post:

Next post: