The following example shows how you can create a simple Panel container with a nested ControlBar container in Flex using ActionScript.

Full code after the jump.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/02/25/creating-a-controlbar-container-in-flex-using-actionscript/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white"
        creationComplete="init();">

    <mx:Script>
        <![CDATA[
            import mx.controls.Button;
            import mx.controls.Text;
            import mx.containers.ControlBar;
            import mx.containers.Panel;

            private var panel:Panel;
            private var cBar:ControlBar
            private var txt:Text;
            private var btn:Button;

            private function init():void {
                txt = new Text();
                txt.text = "The quick brown fox jumped over the lazy dog.";
                txt.percentWidth = 100;

                btn = new Button();
                btn.label = "Button";

                cBar = new ControlBar();
                cBar.addChild(btn);

                panel = new Panel();
                panel.title = "Panel title";
                panel.status = "status";
                panel.width = 160;
                panel.height = 140;
                panel.addChild(txt);
                panel.addChild(cBar);
                addChild(panel);
            }
        ]]>
    </mx:Script>

</mx:Application>

View source is enabled in the following example.

 
 
About The Author

Peter deHaan

Peter deHaan currently works for Adobe on the Flex SDK QA team. While not working on Flex, Flash, and ColdFusion applications, Peter enjoys making up bios and writing in 3rd person. Peter's rarely updated blog can be found at blogs.adobe.com/pdehaan/, actionscriptexamples.com, airexamples.com, and coldfusionexamples.com.

3 Responses to Creating a ControlBar container in Flex using ActionScript

  1. mxlsw says:

    Good example!
    I find that your examples are very clear and easy to understand for flex beginners, I like this blog! ^_^

  2. Peter Arisse says:

    Very nice again naamgenoot, i must say i just started with flex, and have learned a lot from your examples keep up the good stuff!!

  3. Dante Bui says:

    Easy to know, wonderful example! I appreciate so much

Leave a Reply

Your email address will not be published.

You may 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