Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6588773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:05:23+00:00 2026-05-25T17:05:23+00:00

How can Application’s ControlBar be moved to its bottom in Flex 4.5 ? The

  • 0

How can Application’s ControlBar be moved to its bottom in Flex 4.5 ?

The Adobe doc says only:

By default, the ApplicationSkin class defines the control bar area to
appear at the top of the content area of the Application container
with a grey background. Create a custom skin to change the default
appearance of the control bar.

So I look at spark.skins.spark.ApplicationSkin and there is a controlBarGroup (does it hold the ControlBar contents?), but I don’t know how to move it from top to the bottom.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T17:05:23+00:00Added an answer on May 25, 2026 at 5:05 pm

    First thing you have to do is create a custom skin class. In FlashBuilder (FB) there’s an option to create one automatically, but in essence it’s just a class like any other.

    In FB, right-click somewhere in your project and select ‘New > MXML Skin’

    enter image description here

    Then fill in the wizard form as follows:

    enter image description here

    Otherwise just create a new .mxml file and copy/paste the code from spark.skins.spark.ApplicationSkin into it.

    Then in your application assign the skin class you’ve just created:

    <s:Application ... skinClass="skins.MyApplicationSkin" />
    

    Now let’s edit your newly created skin class. This is the part that is of interest to you (I’ll cut out some pieces to make it clearer):

    <s:Group left="0" right="0" top="0" bottom="0">
        <s:layout>
            <s:VerticalLayout gap="0" horizontalAlign="justify" />
        </s:layout>
    
        <s:Group id="topGroup" minWidth="0" minHeight="0"
                    includeIn="normalWithControlBar, disabledWithControlBar" >
    
            <!-- some graphic elements here -->
    
            <s:Group id="controlBarGroup" left="0" right="0" top="1" bottom="1" ...>
                <s:layout>
                    <s:HorizontalLayout ... />
                </s:layout>
            </s:Group>
        </s:Group>
    
        <s:Group id="contentGroup" width="100%" height="100%" ... />
    
    </s:Group>
    

    Almost there. Now all we need to do, is move that ‘topGroup’ beneath the ‘contentGroup’. ‘topGroup’ contains some graphics + the controlBarGroup. ‘contentGroup’ is the area where all components will be inserted that you but in you application .mxml file.

    <s:Group left="0" right="0" top="0" bottom="0">
        <s:layout>
            <s:VerticalLayout gap="0" horizontalAlign="justify" />
        </s:layout>
    
        <s:Group id="contentGroup" width="100%" height="100%" ... />
    
        <s:Group id="topGroup" minWidth="0" minHeight="0"
                    includeIn="normalWithControlBar, disabledWithControlBar" >
    
            <!-- some graphic elements here -->
    
            <s:Group id="controlBarGroup" left="0" right="0" top="1" bottom="1" ...>
                <s:layout>
                    <s:HorizontalLayout ... />
                </s:layout>
            </s:Group>
        </s:Group>
    
    </s:Group>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wonder if my adobe air application can communicate with external hardware's API functions.
I need to make so that my application can have only one instance running
I have a custom class loader so that a desktop application can dynamically start
I'm developing a Facebook application for a business page. The application can only be
Normally an application bundle on OS X can only be started once, however by
I have an application which can only have 1 instance running at each time,
I know that we can make application using Adobe air that will run on
My application can only process up to a certain number of entry in the
How can an application perform stuff when its actually closed like google+? I notice
Can the application use set same char in the XON and XOFF? If yes,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.