Need explanation for the stage.align property

I try to understand better stage.align. Documentation has only a one-line description, more can be inferred from the name and the context of stage.align.

Can someone explain exactly what made this property?

For example this affect something external to the flex application (i.e., the alignment of the window flash in the browser, for example), or something in the flash window sets (i.e. changing the value somehow will change the output of the flash animation)?

I tried playing with the value but have not seen any difference depending on the setting I use. I've seen it used in a few tutorials, but does not understand its purpose there.

Thank you!
David

If you publish a SWF file that is 500 x 400 and the browser gives the player a larger than the window, stage.align dictates where your SWF is displayed in this larger area

Alex Harui

Flex SDK Developer

Adobe Systems Inc..

Blog: http://blogs.adobe.com/aharui

Tags: Flex

Similar Questions

  • need drivers for the following!

    need driver for the following equipment. in fact, it shows as unknown device in my Hp probook g1 450 4th generation i5.

    ACPI\HPQ6007
    * HPQ6007

    I would be happy if you please give me the link of the drivers.

    You need HP 3D DriveGuard on your list of pilot. Choose which operating system you are running and you will pass to the right page:

    http://h20566.www2.HP.com/portal/site/hpsc/public/PSI/swdHome/?cc=us&lang=en&sp4ts.Oid=5405426&AC.admitted=1412400073783.876444892.199480143

  • I need help for the upgrade of my current system.

    I need help for the upgrade of my current system.

    I have SBS 2008 with (Exch 2007, SQL 2005, Sharepoint, backupexec 2010 for sbs) licenses.

    I want to make the larger environment using the following:

    (1) apply Virtualization

    (2) apply to the failover process (clustering)

    "(3) the environment must support adding server terminal server, ERP server, exchange server, domain controller, backup manager.

    Storage 4) that supports Raid (1 and 5)

    UTM excellent 6) that supports (SSL VPN, VPN Global)

    suitable backup solution 7)

    (8) good antivirus for clients

    my questions:

    (1) can you provide me with a good design for this environment

    (2) should I choose what operating system:

    Microsoft datacenter or company

    I know datacenter provide us the unlimited VM but needs per processor license

    so if I have two Grouped servers I want to buy 4 licenses

    and just 4 VMs per company license... to say that we have two servers and maintain 8 vms so wat happened if 1 goes down... How can I migrate the 4 virtual machines on the server failed to another server group... ? should I buy enterprise license?

    (3) if I get the SAN storage for data... How can I save this storage... should I get another SAN?

    (4) how can I upgrade SBS stad single server (windows standrad) without losing the licenses as Exch 2007, SQL 2005, sharepoint.is it a must to buy an edition full std server or there is a way to upgrade (license wise, I mean)?

    (5) what about win2k8 license for VM:

    lets say we have physical that has windows license so that enough to have windows for VM or should I buy windows for VM licenses?

    (6) can I use backExec license for SBS with windows 2008 standard

    (7) who better to virtualization AMD or INTEL

    (8) hyper V or VMware?

    (9) what of Microsoft data protection Manager... is this good?

    (10) what virtual machine manager? What are the benefites keys

    Thanks in advance

    Hello AnasAI,

    You can find the Server forums on TechNet support, please create a new post at the following link:

    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • Need drivers for the Sidewinder Precision Pro X 03-57540

    I NEED DRIVERS FOR THE SIDEWINDER PRECISION PRO XO3-57540 JOY STICK.

    Hi LARRYPEDEN,

    Visit the following link to download the driver:

    http://www.Microsoft.com/hardware/en-us/d/SideWinder-X3-mouse

    You can also follow this step to do the same thing:

    a. double-click the type of device you want to update or change.

    b. right click on the device driver specific, you want to update or change.

    c. click put to update driver to open the Hardware Update Wizard. Follow the instructions in the wizard.

    More information on:

    How to manage devices in Windows XP

  • Guard application launch at the start of the appliance, also need advice for the implementation of network methods

    Hi all

    I'm new to the development of Blackberry and I'm writing a relatively simple application to run on 7.1.

    So far the development was interesting, I managed to create my user interface using resources online (mainly this forum), but today I tried to implement some of the network classes that I need and now I just met constant problems.

    I use Eclipse SDK 3.7.2 (the one that comes with the plugin RIM)

    First question:

    I'm not sure what I changed, but today I noticed that whenever I start the Simulator (by sim 9360) my application is started during the initial startup process. I don't think he did this before, but to be honest, I wasn't paying much attention. I think it starts at the start of the device is because I put a breakpoint in the constructor for my class from the main screen, which is hit before the Simulator happens even to the point where it is ready for user interaction. In addition, once it is ready, if I press the BB button, I see my registered application.

    I don't have it set to automatic start in .xml descriptior enforcement.

    I started this application on the HelloBlackBerry sample, here is my main method for the entry of the application:

    public static void main( String[] args ) {
            appSettings = AppSettings.fetch();
            // Create a new instance of the application and make the currently
            // running thread the application's event dispatch thread.
            HelloBlackBerry theApp = new HelloBlackBerry();
            theApp.enterEventDispatcher();
            //openConnection();
    
        }
    
    
    

    As far as I know, this is the only entry point for the application.

    More code

        public HelloBlackBerry() {
            // Push a screen onto the UI stack for rendering.
            mainScreen = new ScreenHelloBlackBerry();
            pushScreen( mainScreen );
        }
    

    Here is the method of. my class AppSettings fetch()

        // Retrieves a copy of the effective properties set from storage.
        public static AppSettings fetch()
        {
            AppSettings savedSettings = (AppSettings) _store.getContents();
            return new AppSettings(savedSettings);
        }
    

    Some of this code that I wrote myself, the persistence store cause the launch of my car?

    I tried to reset the Simulator to the factory settings, no change.

    All applications initialized during the startup of the device and then closed shortly after?

    Part 2: Need advice for the implementation of functions of network in the application

    I need to implement some methods that will retrieve data from a web service, and I also need to send data to this service. What I've read, the ConnectionFactory is the way to go. I want my application to make a request when the application is open and can check on a set interval. I didn't know exactly how to go about adding another thread for networking, I understand that network connections should not be created on the thread main event, so I tried to do this:

    The constructor of my class that implements screen (ScreenHelloBlackBerry), I use the following to create a modal dialog box to prompt the user for a username, I also try networking wire in the same segment of spawning:

            public ScreenHelloBlackBerry(){...initialize fields and managers, add it all together...then near the end
    
    //This will open the confirm dialog when the application is launched
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                  public void run() {
                      openConfirmDialog();
                    //start connection - Possibly broken
                      ConnectionThread ct = new ConnectionThread();
                      ct.start();
                  }
            });
    

    I don't know if it's somehow OK to do, but it seems to work for what I need. I want a user who launches the application at the prompt, and if a user switch applications, when they come back they wondered again (unless they close the app and reopen it).

    Here is my ConnectionThread:

    public class ConnectionThread extends Thread
    {
    
        public void run()
        {
    
              ConnectionFactory connFact = new ConnectionFactory();
              ConnectionDescriptor connDesc;
              connDesc = connFact.getConnection("http://www.google.com");
              if (connDesc != null)
              {
                  HttpConnection httpConn;
                  httpConn = (HttpConnection)connDesc.getConnection();
                  try
                  {
                      final int iResponseCode = httpConn.getResponseCode();
                      UiApplication.getUiApplication().invokeLater(new Runnable()
                      {
                          public void run()
                          {
                              Dialog.alert("Response code: " +
                                            Integer.toString(iResponseCode));
    
                          }
                       });
                      httpConn.close();
    
                   }
                   catch (IOException e)
                   {
                     System.err.println("Caught IOException: "
                          + e.getMessage());
                   }
              }
        }
    }
    

    At the moment it has basically unmodified code from a sample that I found, I'll be retooling to meet my needs whenever I can make it work. I HAD this work to the point where, after the closed user confirm this dialog, a few moments later a an alert dialog appears with the 302 response code. I don't know what changed, but now it doesn't work at all, and if I try to scroll with the debugger, I can't past the httpCon.getResponseCode (). I've seen some mistakes earlier on "no record of service was set up", and I also had once a timeout exception.

    I'm sure I'm doing this wrong, but at the same time as I said WAS working, and now it is not. If someone has done this far, thank you very much for your time and advice are much appreciated.

    Also, should I try to start the thread of the network of the UIApplication class instead of the screen? There is currently very little happening in the class that extends UIApplication, do I spend most of my business logic out of the class of the screen and in the UIApplication class?

    Thanks in advance!

    Hi all

    Just to conclude this topic for those who are interested, I found an excellent guide to the implementation of networks in applications of BB, click here for a link.

    About my application being started at the start of the simulator of the device, I found that on a device real this behavior is not complied with, and in addition, the behaviour seems to have stopped after uninstallation and reinstallation of my Simulator.

    See you soon,.

  • Need drivers for the SATA hard/controller on the dv7-6c95dx disc.

    Need drivers for the SATA hard/controller on the dv7-6c95dx disc.

    We load Windows 7 Enterprise on these newly purchased laptops, but do it have not the required appropriate drivers detect the hard drive on them. Impossible to find on the HP website.

    You can refer to a completely different question here, Marty. I was installing to a flash drive and it turns out that my install media has been connected to ports USB 3.0 on the left rather than right 2.0 ports. Moving to the ancient ports of 2.0 has solved my problem. Good luck.

  • I need images for the animation of the interactive book for words from A to Z.

    Hello

    I'm creating interactive children's book so I need images for the animation of anyone have idea where I can take the pictures than words from A to Z or any suggestion?

    Best thing to do is to simply do a search for 'Illustrations of Stock', like Google

    All the best.

  • Need help for the button to trigger on the text caption effect

    Hello world

    I work in

    Screen Shot 2016-04-13 at 12.52.31 PM.png

    on a Mac (chart below)

    Screen Shot 2016-04-13 at 12.53.04 PM.png

    I'm very new to Captivate (only my second week), but am familiar in other Adobe programs. I'm trying to get a dynamic object that I made in a button to trigger an effect on a text caption. I scrolled the forums here and tried various things of the advanced actions for just using the drop down menus in the property inspector and nothing that I tried gives me the result I want.

    Here is a screenshot of what I'm working with.

    Screen Shot 2016-04-13 at 12.54.37 PM.png

    What I want to do is for the arrows for the buttons (and they are currently). When the slide appears first I don't want that image and the arrows visible. So when the user clicks on the arrow, I want the effect I chose (spiral) that will be triggered with the corresponding text.

    Looks like my property for each caption Inspector (the names are different for each)

    Screen Shot 2016-04-13 at 12.58.03 PM.png

    And I also tried to write a few advanced Actions that follow as well as tutorials that I found online, and nothing gives me what I want.

    When I preview the slide I can see everything on entry and then when I click the button to apply the effect. I rechecked the advanced actions and usually when I try these nothing happens at all.

    Is - it there anyway that I can get that works this way, I'm wanting. It seems that it should be simple and I'm right on it.

    The shape of buttons are all pause at this moment, it's OK.

    I just tried it out and see what you mean. The text is there from the beginning, and that shouldn't be the case. you expect it not to appear when the button is clicked. I have never used this spiral effect myself, but since you have no control over it, I mean you can't see where starts the effect at all, there is no visible path you have with the other effects of the entry. Either, you need to create a custom, effect whose path begins with text outside the scene, or a combination of an Alpha to + a standard entrance effect.

    Tried the first one with a simple left to a straight path. I edited the paths so that they all start at the same position horizontal and end at the same horizontal position. So happy with the leaders and Guides that we finally got in Captivate, they are very useful for this type of design:

    It's the chronology:

  • Tecra R840 - need driver for the button control / stop Touchpad

    Which driver supports the switch for the touchpad?

    Hello

    If you ask a software / driver, then you should also publish information on your installed system.
    I assume that you have already installed the touchpad driver, in order to use the function keys, you need to install the VAP (value added package) as published by Liam

  • Portege R200: Need keycodes for the mapping of the keys

    Hello

    There are many great mapping software keycodes GNU/Linux (like the quick access keys or fnfxd) but we need keycodes to use.
    I would like to know what are the codes that are bound to

    (1) TOSHIBA Assist button
    Presentation button 2) TOSHIBA

    for the key FN + codes see the/etc/fnfxd/keymap file (in GNU/Linux with installed of course fnfxd ;))

    Thanks in advacnce

    Sorry Kamil, but I don t think that someone here in the forum will be able to ask your advice.
    You ask keycodes. I think that these information are known only to a few programmers tools Toshiba who design and create such applications.

    But maybe you are a lucky man and someone will help you

    Good luck

  • Need drivers for the controller ethernet and network on Tecra M2

    I formatted and reinstalled Xp Pro SP2 on my Tecra m2.
    I installed and found all other drivers, but can't seem to find the correct drivers for the network and ethernet devices controllers.

    I downloaded a few different drivers that are compliant with the Tecra M2 but still have yellow question marks.
    If someone could help it would be much appreciated
    Thank you

    Hello

    I guess you need a Wlan card and LAN driver card.
    I a little surprised at your comment, because the WLan and LAN drivers are available on the page of the Toshiba m driver.

    There are 2 Intel Lan and 4 Wlan drivers for different wireless cards. You must choose the right! ;)
    Check the bottom of the unit. There must be a label with a few s Lan and Wlan card information.
    Select the correct drivers and install it.

  • Need adapter for the Turkey

    I'm going to Turkey for several months and I wonder if I can buy a peg now or should I wait until I'm going to Turkey and buy the accessory it.
    Is there anything else I should buy until I leave.

    Thank you
    cokdeli

    Hello

    As far as I know laptops are equipped with the universal power adapter.
    The voltage is 100-240 v, you don't need a special adapter.

    But I have no idea of what cards are needed for the Turkey
    But in my opinion, you should be able to buy the compatible plug in Turkey as well

  • HP Elitebook 2570p: need driver for the device system of Base and BMC20702A0 on HP Elitebook 2570p (Windows 7 Pro 64-bit)

    Hi-

    I just installed Windows 7 Professional on my HP Elitebook 2570p, and Device Manager, I'm missing the drivers for the device Base and BMC20702A0 system.

    I went to download HP driver and downloaded page 3 recommended for chipset drivers, but that has not helped.

    Here is the list of the categories of driver for my HP model from the HP Web site.  Where should I go next door to download the drivers?

    Thank you!

    Hello:

    You need these drivers for these two devices:

    The media JMicron card reader driver allows the card slot multimedia integrated in the laptop models running a supported operating system.

    File name: sp63637.exe

    This package contains the Broadcom Bluetooth driver and software for models supported that are running a supported operating system. Broadcom Bluetooth 4.0 driver is required to enable the Broadcom Bluetooth 4.0 devices and is compatible with Broadcom Bluetooth 3.0 and earlier versions.

    File name: sp66402.exe

  • Satellite A200 (PSAE6) - need drivers for the functional keys FN

    Please give me a link to this driver.j have windows 7 x 32 bits on my computer laptop a20 psae6... a device reinstal sistem and to reinstall driver and doesn t work... my sensor does not work...

    Hello

    You must download the VAP (value added package) and Flash memory card Support utility.
    These two tools are needed to get the keys FN working in Windows 7!
    I have A210. It s a similar series of laptop and I ve chosen drivers that are released for Satellite L500 series.

    These two tools worked for my A210

  • Satellite L40 - need driver for the modem on high definition audio bus device

    Hey there!

    I have a little problem with my Satellite L40-143 (Modell Nr.: PSL40E-04E00LGR).
    I changed from Windows Vista to Windows XP Professional and found that all need drivers, except a "device on high definition audio bus modem.
    The drivers I found on the Toshiba page don't work anymore.

    I would be very grateful for all the good ideas.

    Thank you ^ ^

    Sayo

    Laughing out loud. Hey Buddy what s the problem
    You have no sound on your laptop or you cannot burn a CD with your CD/DVD drive?

    The fact is that DON T need all the drivers for the CD/DVD drive. The operating system uses Microsoft own driver!
    If you want to burn media, you must install a burning like Nero for example software!

    Good bye

Maybe you are looking for