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 8442407
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:50:10+00:00 2026-06-10T08:50:10+00:00

I am working with Flex 3.0. I am trying to nest VBoxes within a

  • 0

I am working with Flex 3.0. I am trying to nest VBoxes within a TabNavigator and that works fine. But in my first VBox I have two buttons which won’t show. I am not great with design concepts anyway and am new to Flex. I have tried messing with width and height properties, using an Hbox. Could someone take a look and figure out what I could do to fix these. Here is the full Panel. The TabNavigator is close to the bottom.

<mx:Panel id="pnlMain" label="Address Search" width="100%" borderStyle="none" headerHeight="0">
    <mx:ViewStack id="vsAddressSearch" resizeToContent="true">
        <mx:Form id="frmAddressSearch" styleName="measureForm" width="300" height="100%" fontFamily="Arial" fontSize="11" verticalGap="0" horizontalGap="0" verticalScrollPolicy="off" horizontalScrollPolicy="off">
            <mx:FormItem label="Address:" paddingBottom="5" paddingTop="5" textAlign="left" fontWeight="bold" width="100%">                
                <mx:TextInput width="100%" id="txtAddress" text=""/>            
            </mx:FormItem>  
            <mx:HRule height="5" width="100%"/> 
            <mx:HBox horizontalAlign="left" paddingTop="5">
                <mx:Button label="Find Address" click="BingFindAddress()"/>     
                <mx:Button label="Clear" click="clearGraphics()"/>  
            </mx:HBox>              
        </mx:Form>
        <mx:Form id="frmAddressSearch1" styleName="measureForm" width="100%" height="100%" fontFamily="Arial" fontSize="11" verticalGap="0" horizontalGap="0" verticalScrollPolicy="off" horizontalScrollPolicy="off">
            <mx:FormItem label="Street:" paddingBottom="5"  labelWidth="150" textAlign="left" fontWeight="bold">                
                <mx:TextInput width="100%" id="address" text=""/>            
            </mx:FormItem>            
            <mx:FormItem label="City:" paddingBottom="5" labelWidth="150" textAlign="left" fontWeight="bold">                
                <mx:TextInput width="100%" id="city" text=""/>            
            </mx:FormItem>   
            <mx:FormItem label="State/Province:" paddingBottom="5"  labelWidth="150" textAlign="left" fontWeight="bold">                
                <mx:TextInput width="100" id="state" text="PA"/>            
            </mx:FormItem>            
            <mx:FormItem label="ZIP Code or Postal Code:" fontWeight="bold" labelWidth="150"  textAlign="left" paddingBottom="5" >                
                <mx:TextInput width="100" id="zip" text=""/>            
            </mx:FormItem>            
            <mx:FormItem label="Country:" paddingBottom="5"  labelWidth="150" textAlign="left" fontWeight="bold">                  
                <mx:ComboBox id="country" selectedIndex="0">                    
                    <mx:ArrayCollection>     
                        <mx:String>USA</mx:String>                   
                        <mx:String>Canada</mx:String>                        
                        <mx:String>Mexico</mx:String>                    
                    </mx:ArrayCollection>                
                </mx:ComboBox>            
            </mx:FormItem>       
            <mx:HRule height="5" width="100%"/> 
            <mx:HBox horizontalAlign="left" paddingTop="5">
                <mx:Button label="Find Address" click="ESRIFindAddress()"/>     
                <mx:Button label="Clear" click="clearGraphics()"/>

            </mx:HBox>     
        </mx:Form>
        <mx:Form id="frmAddressSearch2" styleName="measureForm" width="100%" height="100%" fontFamily="Arial" fontSize="11" verticalGap="0" horizontalGap="0" verticalScrollPolicy="off" horizontalScrollPolicy="off">
            <mx:FormItem  label="Street:" paddingBottom="5"  labelWidth="150" textAlign="left" fontWeight="bold">                
                <mx:TextInput width="100%" id="bamAddress" text="273 Cumberland St"/>            
            </mx:FormItem>            
            <mx:FormItem  label="City:" paddingBottom="5" labelWidth="150" textAlign="left" fontWeight="bold">                
                <mx:TextInput width="100%" id="bamCity" text="Harrisburg"/>            
            </mx:FormItem>   
            <mx:FormItem  label="State/Province:" paddingBottom="5"  labelWidth="150" textAlign="left" fontWeight="bold">                
                <mx:TextInput width="100" id="bamState" text="PA"/>            
            </mx:FormItem>            
            <mx:FormItem  label="ZIP Code or Postal Code:" fontWeight="bold" labelWidth="150"  textAlign="left" paddingBottom="5" >                
                <mx:TextInput width="100" id="bamZip" text="17102"/>            
            </mx:FormItem>            
            <mx:FormItem label="Country:" paddingBottom="5"  labelWidth="150" textAlign="left" fontWeight="bold">                  
                <mx:ComboBox id="bamCountry" selectedIndex="0">                    
                    <mx:ArrayCollection>     
                        <mx:String>USA</mx:String>                   
                        <mx:String>Canada</mx:String>                        
                        <mx:String>Mexico</mx:String>                    
                    </mx:ArrayCollection>                
                </mx:ComboBox>            
            </mx:FormItem>       
            <mx:HRule height="5" width="100%"/> 
            <mx:HBox horizontalAlign="left" paddingTop="5">
                <mx:Button label="Find Address" click="BAMFindAddress()"/>     
                <mx:Button label="Clear" click="clearGraphics()"/>     
            </mx:HBox>     
        </mx:Form>
    </mx:ViewStack>
    <mx:VBox id="frmShell" backgroundAlpha=".7" backgroundColor="#dddddd" visible="false" left="0" top="0" width="100%" height="100%"></mx:VBox>
    <mx:Text id="hintLabel" fontSize="10" color="#999999" text="" horizontalCenter="0" bottom="10" visible="false" maxWidth="290" />

    <mx:TabNavigator id="tabNavigator" width="100%" height="0%"  visible="false" creationPolicy="auto">


        <mx:VBox id="generalInformation" label="Gen. Info." width="100%">
            <mx:Label id="ard" text=""> 
            </mx:Label>
            <mx:Button  id="googleButton" visible="false" label="Google Directions" click="newWin('https://maps.google.com/?q=' + addressResult)"/>
            <mx:Button id="mapquestButton" visible="false" label="MapQuest Directions" click="newWin('https://mapquest.com/?q=' + addressResult)"/>
        </mx:VBox>
        <mx:VBox id="schoolDistrict" label="School District" width="100%">
        </mx:VBox>
        <mx:VBox id="paHouse" label="PA House" width="100%">
        </mx:VBox>
        <mx:VBox id="paSenate" label="PA Senate" width="100%">
        </mx:VBox>
        <mx:VBox id="usHouse" label="US House" width="100%">
        </mx:VBox>
    </mx:TabNavigator>  
</mx:Panel>
  • 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-06-10T08:50:11+00:00Added an answer on June 10, 2026 at 8:50 am

    Your buttons are set to visible="false" so they are not going to show up.

    <mx:Button  id="googleButton" visible="false" label="Google Directions" click="newWin('https://maps.google.com/?q=' + addressResult)"/>
    <mx:Button id="mapquestButton" visible="false" label="MapQuest Directions" click="newWin('https://mapquest.com/?q=' + addressResult)"/>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to build my Flex/Java web app from within IntelliJ rather than have
I'm trying to get the flexpaper document viewer working in my flex app, but
I'm trying to get a loader working in a flex web application, but it
I'm working on my first real Flex app and i have learned a lot
I have a working Flex/BlazeDS application (for simple AMF remoting) with the following settings:
I'm working with flex, but actionscript ideas are just as good. The flex <s:Application>
I am working on flex dasboards and charting stuff. Till now I have build
Problem solved, see below Question I'm working in Flex Builder 3 and I have
I'm working with a Flex 4 mxml file that uses a textFlow for RichEditableText
I am working on a Flex Front End at the moment, and have been

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.