[FB4/AIR] Strange border at the bottom of the windows

Can someone tell me why my main window of AIR (< s:WindowedApplication >), but also a separate NativeWindow (open via window.open ()) contain both a gray rectangular border at the bottom. I have attached a picture showing the border (red line) and also marked their with a 1 & 2. The border appears also at design time. I have attached a picture of this as well.

Thanks for any idea.

air.windows.gif

air.window.design.time.GIF

Hello

Are you talking about the status bar? If so

http://ns.Adobe.com/MXML/2009.

xmlns:s = "library://ns.adobe.com/flex/spark".

xmlns:MX = "library://ns.adobe.com/flex/mx" ShowStatusBar is kept = "false"><===== set="">

David

Tags: Flex

Similar Questions

  • How to remove blue border of the Windows XP desktop icons?

    Windows xp desktop icons are all framed in a blue box. How can I remove the blue box of the icons?

    * original title - Windows xp desktop icons are all enclosed in a blue box. How can I remove the blue box of the icons? *

    Hello

    ·         Remember to make changes to the system?

    I suggest you send a screenshot of the problem you are having so that we can help you in a better way.

    Use SkyDrive download collected files and after shot/screenshot.

    http://social.technet.Microsoft.com/forums/en-us/w7itproui/thread/4fc10639-02dB-4665-993a-08d865088d65

    Apart from that, I suggest you follow the steps mentioned below.

     

    Method 1:

    a. right click on your desktop, and then tap rearrange icons by.

    b. see if "Lock Web items on your desktop" are checked, if checked, uncheck it.

    The problem should be resolved, otherwise, follow method 2.

    Method 2:

    a. go to control panel, and then click System.

    b. click on the Advanced tab and then click on the custom button.

    c. see if "Shadows fall to use the desktop icon labels" are checked, otherwise, check it out.

  • How can I put the Windows XP firewall in a port configuration 'allow all' and only block some ports?

    Without going into the details of why I need to do this, I'm putting the firewall of Windows XP in one allow all the configuration of ports and only refuse some ports I have in a list.

    I train this script via the command-line batch with the netsh firewall add portopening command.  From what I've read, if enabled the firewall denies all traffic and only allows ports with exceptions, so through batch scripts, I opened all the 65 000 + ports TCP and UDP, essentially with the firewall turned on but in a configuration of "allow all the»  I don't deny the 100 or so ports to my list that I want blocked after they are all open.

    This strategy seems to work, but the problem I waited and I now see is that svchost.exe takes 50% of my CPU time, have to deal with constantly these firewall rules.

    "From what I've seen on Windows XP, there is no way to have the firewall ON, and in a configuration of" allow all the "" because the XP firewall may not have defined port ranges, they must be defined one by one.  It looks like Windows Vista or 7 would be much easier because the firewall has got a re vamp of advanced features.

    Does anyone have a suggestion on how to realize this "allow all", deny some' strategy?  I know it's a strange use of the Windows Firewall, so let's please jump in front of a 'why would you do this incredibly stupid thing?"messages.

    Also, if it was the wrong forum (or website) to post on for this kind of question, I'd appreciate a recommendation of a more appropriate forum.

    Hello

    See the steps in the following article.

    How to manually open ports in Internet Connection Firewall in Windows XP?

    http://support.Microsoft.com/kb/308127

  • Problem with the Task Manager. The top of the window is absent, there is no button or ways to Exchange to treat the view. Any suggestions on what to do?

    I have not downloaded anything unusual recently

    This behavior can occur if the Task Manager is running in tiny footprint mode. If you double-click on the empty in the border around the tabs, Manager space tasks switches to this mode.
    To enable the task to his typical display mode Manager, double-click the top border of the window.  TaurArian [MVP] 2005-2010 - Update Services

  • How to get the dimensions of the area within the window of the scene?

    Hello

    I am able to get the size of a window using stage.getWidth () and stage.getHeight (), which gives the dimensions of the window, including the border. But how the size of the dimensions within the window, which is the area inside the border of the window?

    I had created a way to understand this by calculating the difference between the sides of my initial scene and my step. I called this window filling, which is essentially the thickness of the border on the sides and up and down.

    This method of calculation for available surface area in a window is not reliable when a window is maximized, because the thickness of the border of the window shrinks when enlarged. And if your stage size is larger than your scene, then you will get a wrong value.

    There must be a way to get this area. I need it to do correctly scaling.

    Thank you
    Jose

    Published by: jmart on 22 August 2012 23:58

    I did it by adding a 'master' component to the stage

    mainScene = new scene (masterPane, 430, 430);

    The master component is just a container that contains all the content but will resize the window resize event and therefore will always have the right width and height.

    masterPane = new Pane();
    masterPane.getChildren () .add (root);

    Due to that you can resize your content based on

    Double screenWidth = masterPane.getWidth ();
    Double screenHeight = masterPane.getHeight ();

    Here is an example. You can zoom (scrollwheel), pan (click and drag) and Center + scale on the screen (middle button) (only if the content is a square, there is a bug if the content is greater than the width, which I had no time to eliminate now but you get the point)

    import javafx.animation.Animation;
    import javafx.animation.ParallelTransition;
    import javafx.animation.ParallelTransitionBuilder;
    import javafx.animation.RotateTransition;
    import javafx.animation.RotateTransitionBuilder;
    import javafx.animation.ScaleTransition;
    import javafx.animation.ScaleTransitionBuilder;
    import javafx.animation.Timeline;
    import javafx.animation.TranslateTransition;
    import javafx.animation.TranslateTransitionBuilder;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.input.MouseButton;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.ScrollEvent;
    import javafx.scene.layout.Pane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    
    public class Test extends Application
    {
        Stage primStage;
        Scene mainScene;
        Group root;
        Pane masterPane;
        Point2D dragAnchor;
        double initX;
        double initY;
    
        public static void main(String[] args)
        {
            launch(args);
        }
    
        @Override
        public void init()
        {
            root = new Group();
    
            final Pane pane = new Pane();
            pane.setStyle("-fx-background-color: #CCFF99");
    
            pane.setOnScroll(new EventHandler()
            {
                @Override
                public void handle(ScrollEvent se)
                {
                    if(se.getDeltaY() > 0)
                    {
                        pane.setScaleX(pane.getScaleX() + pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() + pane.getScaleY()/15);
                    }
                    else
                    {
                        pane.setScaleX(pane.getScaleX() - pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() - pane.getScaleY()/15);
                    }
                }
            });
    
            pane.setOnMousePressed(new EventHandler()
            {
                public void handle(MouseEvent me)
                {
                    initX = pane.getTranslateX();
                    initY = pane.getTranslateY();
                    dragAnchor = new Point2D(me.getSceneX(), me.getSceneY());
                }
            });
    
            pane.setOnMouseDragged(new EventHandler()
            {
                public void handle(MouseEvent me) {
                    double dragX = me.getSceneX() - dragAnchor.getX();
                    double dragY = me.getSceneY() - dragAnchor.getY();
                    //calculate new position of the pane
                    double newXPosition = initX + dragX;
                    double newYPosition = initY + dragY;
                    //if new position do not exceeds borders of the rectangle, translate to this position
                    pane.setTranslateX(newXPosition);
                    pane.setTranslateY(newYPosition);
    
                }
            });
    
            int x = 0;
            int y = -40;
            for(int i = 0; i < 5; i++)
            {
                y = y + 40;
                for (int j = 0; j < 5; j++)
                {
                    final Rectangle rect = new Rectangle(x, y, 30 , 30);
                    final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                            .node(rect)
                            .duration(Duration.seconds(4))
                            .fromAngle(0)
                            .toAngle(720)
                            .cycleCount(Timeline.INDEFINITE)
                            .autoReverse(true)
                            .build();
                    rect.setOnMouseClicked(new EventHandler()
                    {
                        public void handle(MouseEvent me)
                        {
                            if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                            {
                                rotateTransition.setToAngle(0);
                                rotateTransition.stop();
                                rect.setFill(Color.BLACK);
                                rect.setScaleX(1.0);
                                rect.setScaleY(1.0);
                            }
                            else
                            {
                                rect.setFill(Color.AQUAMARINE);
                                rect.setScaleX(2.0);
                                rect.setScaleY(2.0);
                                rotateTransition.play();
                            }
    
                        }
                    });
    
                    pane.getChildren().add(rect);
                    x = x + 40;
    
                }
                x = 0;
    
            }
    
            pane.autosize();
            pane.setPrefSize(pane.getWidth(), pane.getHeight());
            pane.setMaxSize(pane.getWidth(), pane.getHeight());
            root.getChildren().add(pane);
    
            masterPane = new Pane();
            masterPane.getChildren().add(root);
            masterPane.setStyle("-fx-background-color: #AABBCC");
            masterPane.setOnMousePressed(new EventHandler()
            {
               public void handle(MouseEvent me)
               {
                   System.out.println(me.getButton());
                   if((MouseButton.MIDDLE).equals(me.getButton()))
                   {
                       double screenWidth  = masterPane.getWidth();
                       double screenHeight = masterPane.getHeight();
                       double scaleXIs     = pane.getScaleX();
                       double scaleYIs     = pane.getScaleY();
                       double paneWidth    = pane.getWidth()  * scaleXIs;
                       double paneHeight   = pane.getHeight() * scaleYIs;
    
                       double screenScale  = (screenWidth < screenHeight) ? screenWidth : screenHeight;
                       int    screenSide   = (screenWidth < screenHeight) ? 0 : 1;                 
    
                       double scaleFactor = 0.0;
                       if(screenSide == 1)
                       {
                           scaleFactor = screenScale / paneWidth;
                       }
                       else
                       {
                           scaleFactor = screenScale / paneHeight;
                       }
    
                       double scaleXTo = scaleXIs * scaleFactor;
                       double scaleYTo = scaleYIs * scaleFactor;
    
                       double moveToX  = (screenWidth /2) - (pane.getWidth()  / 2);
                       double moveToY  = (screenHeight/2) - (pane.getHeight() / 2);
                       TranslateTransition transTrans = TranslateTransitionBuilder.create()
                           .duration(Duration.seconds(2))
                           .toX(moveToX)
                           .toY(moveToY)
                           .build();
                       ScaleTransition scaleTrans = ScaleTransitionBuilder.create()
                           .duration(Duration.seconds(2))
                           .toX(scaleXTo)
                           .toY(scaleYTo)
                           .build();
                       ParallelTransition parallelTransition = ParallelTransitionBuilder.create()
                          .node(pane)
                          .children(transTrans,scaleTrans)
                          .build();
                       parallelTransition.play();
                   }
               }
            });
    
        }
        public void start(Stage primaryStage)
        {
            primStage = primaryStage;
            mainScene = new Scene(masterPane, 430, 430);
            primaryStage.setScene(mainScene);
            primaryStage.show();
        }
    }
    
  • &lt; div &gt; disappears when the window is too small

    Hello

    I have noted on many professional websites that if you change the width of the page (with the right border of your window) it "reduced" or "extends" appropriately.

    If you make the window too narrow, the right border of the window covers just what is beyond some fixed point 'X '.

    I'm working on a page with three < div > s in a larger < div >.

    When I shake the page on the left, with the right edge of the window, all contracts properly.

    except when I get to a certain point, the internal s < div > disappear.

    What is the name of the property professional sites that allows content is just 'hidden '.

    below a certain width X, instead of jumping on a page?

    Thank you!

    We would need to see the page to tell you what is really happening. As I see it, it is possible that the divs are not endangered, they are just the float blows below the visible content. What you get when you scroll down right here? Otherwise, there could be a mobile request on the page that is initially a new stylesheet load to a certain minimum screen width and the DIV in question are hidden by the new CSS rules. Can you show us the page?

  • Monitor LG Flatron L245WP-BN is cut off at the top and has a black border at the bottom of the screen

    Monitor LG Flatron L245WP-BN is cut off at the top and has a black border at the bottom of the screen. Connected to HP laptop Pavilion via a HDMI cable. Is it possible to align the screen so the full screen is showing?

    Help, please!

    Thank you

    navers wrote:

    Sorry! It's a HP Pavilion 15 laptop. I can give you the number of the product if you want? Windows 64-bit of 8.1

    Thank you for the additional information.

    Yes, the product number would be helpful.  Please do not provide the serial number, however.

    I think that your problem is perhaps that the monitor is not compatible with Win 8.1.  The only available updates are for Win XP and Vista.  You can find this information in the link that I provided in the article titled "Software Update".

    I suggest you contact LG Customer Service to see if they can help you.

    Please click on the Thumbs up button '+' if I helped you and click on "Accept as Solution" If your problem is resolved.

  • Have HP Deskjet 1660; When I go to print photo borderless 4 x 6 there's always a border at the bottom

    I have printer HP Deskjet 1660. When I want to print 4 x 6 borderless photo there is always a border at the bottom of the photo. Tried several times without success.

    The 1660 impossible Deskjet to print complete without borders on all 4 sides, there is a bottom margin of ~ 0.46 ".  To get a borderless printing use "Tabbed 4x6in photo paper" like here.  This document contains a microperf removable 1/2 "tab which is removed after printing, leaving a clean borderless printing 4 x 6.

  • Mail application has letters strange "Rfu" at the bottom of the issue of the screen

    This showed on my wife 5 with IOS 9.3.1 iphone and wonder if it's been hacked?

    If you log on to the account of a browser, this arises? If so, I would change the IPL on the account. If this isn't the case, I would try to reset your e-mail account on the phone.

    First close your Mail application completely from the window of the selector app by double clicking the Home button and drag the email preview pane up until it disappears from the display. Then go to settings > Mail, Contacts, calendar > find your e-mail provider and click on the account. On the next page, delete the account. Then perform a forced reboot. Hold down the Home and Sleep/Wake buttons simultaneously for about 15-20 seconds, until the Apple logo appears. Then go to settings > mail... and to add the account.

  • I can restore the lower border of the mail?

    Where is the 'border' bottom of the mail? There used to be a border at the bottom of the mail, she had been gone for a while? If I go to mail > view > Hide/restore only the toolbar or Favorites at the top of the window, that's what is required. If I go to preferences > look at a tab and check 'use Classic"the bottom of the page open mail remains hidden, missing, lost, misplaced, it isn't here. Now I wonder how much time he disappeared and if I just noticed its lack, I shouldn't need it?

    Well, anyone want to enlighten an old man?

    Thank you

    If you mean the old Board of control under your list of mailboxes (?)  I don't remember exactly when that disappeared.  But these features are now available elsewhere.  As "New mailbox" is now under "MAILBOX."

    I agree that was very convenient.  But a minimalist design is the word of the day.

    That said there is a status bar that appears dynamically today in this place - but only when the application is actually verified, download or email.

  • Border of the area selection moves mysteriously when zoomed

    Hello!

    I run Photoshop CC (2015 - recently updated) on Windows 7 Professional (Service Pack 1). After the update I have a strange problem:

    1. I Select one area (using the rectangle selection tool).

    2 - I have to zoom. And see the lower border of the area of selection shifted upward a little.

    3. when I try to paint the line appear in the original selection (he painted behind the offbeat displayed border).

    I took the screenshot to be quite obvious:

    photoshop-selected-area-border-shift-on-zoom.jpg

    I guess this isn't any function that I can turn on/off but a glitch, right? Anyone any solution to this, please?

    A lot of questions in CC 2015 Adobe should address it. I've seen a lot of strange things happen on my poster using CC 2015 with dotted mobile content layer as ghosts he likes your in the twilightzone. I'm back using 2014 CC until Adobe treat problems CC 2015.

  • How to create a full page border, including the header and footer?

    Hello

    So, I'm new to Muse but I'm loving far! I am trying to create a border of 1 px around the entirety of my page, including the header and the footer, which surrounds the whole of each page (regardless of the specific height of the page). I tried to create the border on the master page, but on other pages, the border is that the size of the image of the master page, no matter how large, I put the master page.

    Is it possible to have an object extends through (and around) the header and footer and scale to the size of the page, depending on the amount of content there is on the page? Thank you!


    John

    Go to your master page, deselect all items, and then use the run command in the command band on top of the application window.

    Your second question: element use identical 2, which lie precisely on the other. Pin the element of punch to the top of the page and the second to the bottom of the page. If the page grows, it will look like a, item "long".

  • How to get the border around the text

    Hello

    Attached is a logo that has a border around the text that im trying to duplicate I tried dropshadows and with the help of a stroke, but the two did not work if someone could tell me how this is done I would greatly appreciate it's for a logo design btw im. Just trying to learn new tricks in illustrator.

    Thank youCutepen.png

    Appearance Panel, add a line (at the bottom of the appearance Panel). Move the line under the fill in it entering on the right side of the Panel, drag down filling. Make the race heavy enough to achieve the desired effect.

    Mike

  • the border on the images

    I'm trying to add a border to the images using a class so that I can have a colored border.  It looks a lot like my local view but when I upload it to the Web site, there is no border.  The source code on the website displays the class.  I have even included the class in the model as a binder the css of the page.  I use cs5.5.  Why the border not showing on the website?

    It comes to my website page, I'm trying.

    http://www.graceavenue.org/new%20Site/view/all-Church.html

    The class .photo:

    .photo {}

    padding-bottom: 1px;

    padding-left: 1px;

    padding-right: 1px;

    padding-top: 1px;

    border-color: #93070 has.

    border width: 2px;

    }

    Using the class:

    < td width = "300" align = "center" valign = "top" bgcolor = "#F7C96B" > < class p = "pcenter" > < img src = "/ Photos/Chile Cookoff1.jpg" width = "285" height = "357" border = "2" class = "image" / > < / p >

    < class p = "pcenter" > Chile contest culinary < /p >

    "< class p ="pcenter"> < img src="/Photos/RummageSale.jpg "width ="285"height ="241"border ="2"class ="image"/ > < / p >

    < class p = "pcenter" > Braderie < /p >

    "< class p ="pcenter"> < img src="/Photos/PieAuction.jpg "width ="285"height ="190"border ="2"class ="image"/ > < / p >

    < class p = "pcenter" > pie auction < /p >

    "< class p ="pcenter"> < img src="/Photos/FallFestival.jpg "width ="285"height ="214"border ="2"class ="image"/ > < / p >

    < class p = "pcenter" > fall Festival < /p >

    "< class p ="pcenter"> < img src="/Photos/pancake2.jpg "width ="285"height ="166"border ="2"class ="image"/ > < / p >

    < class p = "pcenter" > pancake Festival Shrove < /p > < table >

    Thanks for the help!

    Add

    border-style: solid;

    .photo CSS rule.

    And remove border = "2" of all the tags. He's going to get in the way the CSS rules.

  • Adding border around the text

    Hello

    I click on 't' to type text and color of the text, for example, orange; If I then try to add a black outline in Edit | Stroke, I noticed that "Stroke" is grayed out.

    How can I add this black border around the letter (s), then, please?

    Thank you.

    Steve

    Use the layer styles.  Double click on the layer which will open the dialog to styles of layer, and you will see the path of the race to the bottom of the list.

Maybe you are looking for

  • IntelHD chips in MacBook Air start just less efficient?

    So I have a Core i5 MBA. 4 GB RAM, 128 GB SSD, and it is probably the strangest machine I've ever owned. Speakers just didn't work at all until yesterday when like magic, it started working, which - as a technician 16 - who actually me mystified but

  • NTSC in PAL TV tuner

    I bought Satellite P25-S607 with TV and XP MCE in the United States, broadcast NTSC tuner receives OK but now can not watch TV in Europe with the standard video signal PAL (no noise, no color, pure quality). Is any solution (drivers, programs) to use

  • I also received a phone call from an Indian man who claims to make Windows and I have a Virus

    I also received a phone call from an Indian man who said I had a virus, I did not open anything but try to connect but could not it says something like unable to connect that someonelse is connected, I tried to log on my girls password and the same t

  • Problem reading visa

    I have a series vi communication that works very well.  I need to go to the Visa and created a vi.  My problem is that I get data that are not logical at all with the VISA program. For example: Byte 1: Leading byte 0D Byte 2: Bit 0,1,2 define the dec

  • where can I download HP Recovery Manager?

    I have a HP Pavilion A520n. I replaced the hard drive and need to replace the Recovery Manager software to get back where he was. I need to get the HP Recovery Manager download, ideas? No available at HP recovery disk! Windows XP Home Edition has on