Layout mirror mystery

I have a large AIR application written in Flex 3. After updating to Flex 4.0 and 4.01 (using AIR 2.0) some very strange behaviour has occured:
Some layouts (mostly components based on the Group class) are completely mirrored ! Panels, text, images, buttons are mirrored !
None of this shows up when viewing in design mode, it only shows up when running the app.
Many of the apps parts are based on custom templates. So most of the code is similar in many cases. But even in these cases some of the layouts show up just fine, and others are completely mirrored.
I am unable to find anything in the code that could make this happen.
In addition to this I also have another problem: I have an image that I can drag a selection on and copy the content. After updating Flex the selection is reversed when dragging. Dragging to the left moves the selection rectangle to the right, and visa versa - as if the whole selection is mirrored in relation to the image.
I didnt have any of these problems before updating, the whole app worked fine.
Have anyone of you experienced this strange stuff ? Any known bugs that can cause this ?

Thanks for your reply Shongrunden.
I`m afraid none of the fixes worked.
However, thanks to you and your reply I did some additional tests and I found a fix:
All the mirroring occured in group subclasses. When replacing the group tags with skinnable container tags it worked as it should.
I presume there is a bug in the group class causing this strange behaviour (?)

Similar Messages

  • Screen layout is mysteriously switched

    Somehow my inspector and my viewer/browser have swapped positions so that now my inspector (i.e. the Project, Metadata, and Adjustments palette area) is on the right of the screen. How do I get it back over to the left?

    Never mind. I found it: shift+I
    No idea how I managed to swap it in the first place.

  • Storage Space - Unable to view exported Mirrored REFS volume over ISCSI Target in Vmware, but works with Simple Volume. Is this expected

    Followed  Steps:
    1. Created a Storage Pool Combination of SSD and HHD.
    2. Created Virtual Disk, with mirror and without tiered.
    3. Created  a  volume using virtual disk.
    4. Created New ISCSI Virtual disk and exported to VMware.
    Result: 
    1. Unable to view the Lun, If I create using the mirror.
    2. Can able to view it, When I create simple volume. 

    Hi Mara Ram,
    Before going further, would you please let me know which version of Windows Server you use?
    In my Lab environment, I followed steps as you described. However, I can view the Lun when create by using
    storage layout: Mirror. Just one different point, I created the new iSCI virtual disk and exported to a Hyper-V (not VMware) virtual machine. Please check if it was the cause of this issue.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Text reversed (mirrored) in menus, lists & popups

    Hi there
    I've just installed the latest trial version of FlashBuilder with the Flex SDK 4.1.
    After compiling and running my project all my popups (TitleWindow + Alerts) are reversed and the text inside them is reversed. Also all the text in my menus are reversed. By reversed I mean that it looks as if one is looking at them in a mirror.
    Why on earth would this be happeining?
    Cheers
    Tracy

    This is happening because the biggest change in Flex 4.1 is the ability for layout mirroring.
    "Layout mirroring refers how containers and controls are drawn on  the screen. The default direction is LTR. You can change any container  or control that implements IVisualElement to lay out from right to left  by setting the layoutDirection style property to "rtl"."
    I experienced the same problem as you..however it went away and I'm still not sure what I did to make it work all of a sudden.. but I'm very curious also

  • Where's the keyboard layout preference file?

    I'm having an irritating problem with my preferred keyboard layout (Canadian) mysteriously reverting to other layouts, even though I have disabled all but the Canadian layout. It's only happening in one of my user accounts. So I'm looking for the keyboard layout .plist file to trash, but I can't find it. Can anybody help me locate it?
    Thanks

    Hello,
    Check out this link: http://docs.info.apple.com/article.html?artnum=75066
    When you originally set up your eMac, you would have used the SetUp Assistant... there's information at the link above that might help.
    I've searched high and low for a preference file that might be related. You could trash your com.apple.systempreferences.plist but you would have to reset your System Preferences system wide. If you want to try that go to the user account in question. Go here: /Library/Preferences. Locate the com.apple.systempreferences.plist file and drag it to the Desktop. Open System Preferences and reset the keyboard (Canadian) and see if that helps. If that resolves the problem, then that com.apple.systempreferences.plist file should go to the Trash. The next time you open System Preferences your eMac will create a new pref file for you.
    Carolyn

  • Flex 4 Arabic

    I am involved in creating Arabic site in Flex 4. I am using layout mirroring for flip the site in RTL direction. It is working perfectly and i am using two separate resource files for Arabic and English. The problem now is that, Arabic text is getting transposed. It is not displayed in correct direction as it is in the resource file and even this happens when paste some Arabic text in the application. Probably, this isssue has some answers elsewhere, if so please redirect me to that place

    Hello, have you found a solution for this? I used to use Flary which worked well for flex 3, when I used it with 4, it didnt work.
    Thanks

  • Flipped BitmapImage in Flex 4.1 (possible bug)

    Hello everyone.
    I'm experiencing strange behaviour of BitmapImage component with Flex 4.1 (more specificly - build 4.1.0.16076). Here is a sample application which causes an issue to arise:
    <s:Application creationComplete="this_creationCompleteHandler(event)">
       <fx:Script>
          <![CDATA[
             import components.base.viewport.Viewport;
             import mx.events.FlexEvent;
             import spark.components.Group;
             import spark.primitives.BitmapImage;
             [Embed(source="image.jpg")]
             private var imageClass:Class;
             protected function this_creationCompleteHandler(event:FlexEvent):void
                var container:Group = new Group();
                var image:BitmapImage = new BitmapImage();
                image.source = imageClass;
                container.addElement(image);
                addElement(container);
          ]]>
       </fx:Script>
    </s:Application>
    The problem is that the image is flipped horizontally (and it should not be). This probably have something to do with the bug SDK-26346, which is now closed. In comments I've found a "workaround" for the issue: if we switch places of two last lines of  this_creationCompleteHandler() method (we add container to the display list and only after that we add image to that container) the problem dissapears. However, I must say that version 4.0 of the framework does not suffer from this issue. Moreover, this also does not apply for other components with 4.1 as well (I guess there might be a few others causing the issue but I have tested  this with BitmapImage only).
    So here is my question. Is it illegal to add BitmapImage to any container prior adding that container to the display list (and that effectively means that we have to create children of any component only in createChildren() method and not, for example, in a constructor)? If this is true, then why adding an image to a container before it has been added to the display list worked without any problems until the new version of the framework has been realeased? Or is this a bug introdused by "layout mirroring" feature in 4.1  version of Flex? In that case, I will have to report a bug.
    Thanks in advance,
    Michael

    This looks like a bug to me.  I have reproduced the issue in Flex 4.1 and yes it looks like a regression from 4.0.
    Please file a bug and post the bug ID on this thread so we can investigate further.
    Thanks

  • What is going in to Flex SDK 4.1?

    Where can I get more information?

    The only "Feature" going into the 4.1 Flex SDK is "Layout Mirroring" which will support right-to-left layouts. You can read the spec on our open source site:
    http://opensource.adobe.com/wiki/display/flexsdk/Layout+Mirroring
    There are also bug fixes in the 4.1 SDK. Lastly, the SDK should included updated versions of the Flash Player and AIR (versions 10.1)
    Joan

  • TS1398 I can longer find the airplay icon on my iPad when I double click the home icon. It worked fine and then mysteriously disappeared. When I click the music icon there is an airplay icon top right which is fine for music, but I can't mirror anything e

    I can longer find the airplay icon on my iPad when I double click the home icon. It worked fine and i used it for a couple of weeks to mirror with the Apple TV and then it mysteriously disappeared. Now when I double click and slide the icons at the bottom to far left, instead of finding airplay there is an extra music icon and a music control panel. If I open up the music app, there is an airplay icon top right next to volume control which works fine with mirroring the Apple TV, which suggests to me wi-if and networks are fine. I can only mirror music however. Any ideas anyone?

    Hello there, Catherine351.
    The following Knowledge Base article has some great in-depth information and steps to troubleshoot the issue you're describing:
    Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS4215
    If the issue persists, the Additional Information section has a supplemental link for how to resolve issues with Multi-Tasking that may prove useful as well.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • [svn:fx-trunk] 13693: Initial version of the mirroring layout code.

    Revision: 13693
    Revision: 13693
    Author:   [email protected]
    Date:     2010-01-21 12:25:54 -0800 (Thu, 21 Jan 2010)
    Log Message:
    Initial version of the mirroring layout code.  Only Spark is supported.  API revisions for this feature are very likely to follow.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Evtim
    Tests run: All Mustella tests pass
    Is noteworthy for integration: yes
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/UIMovieClip.as
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Label.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/AdvancedLayoutFeatures.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IVisualElement.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/MatrixUtil.as
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/HSlider.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/PopUpAnchor.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/core/SpriteVisualElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/CheckBoxSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/DefaultItemRenderer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/PanelSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/utils/BitmapUtil.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ILayoutDirection.as

    Jon Fritz II wrote:
    If I had a site where the target audience was largely Asian or South American, I'd care about IE6 and 7.
    That hasn't come up yet.
    IE8 still shows up at decent percentage in the analytics for certain sites so I've flip-flopped back and forth whether I will support it a few times.
    I say "good enough" a lot more while testing in IE8 than I used to, that's for sure.
    IE 8 I can understand but just had a quick flick through some of my web sites stats and IE6 and IE7 are under 1 per-cent nearer to 0.5%. If I'm honest I was surprised to see in some instances IE 8 still getting as much as 8 percent.

  • Images of signatures,Test form layout printed as upside down & as mirror im

    Hi All,
    The images of signatures and the test form Layout images are printed as upside down mirror images.
    This is happening after upgrade. What could be the problem? this is happening while printing notifications.
    Please let me know. Thanks in advance.
    Thanks & regards,
    Y Gautham

    Hi,
    Take a look at SAP note #683605. Usually this is a problem of the printer driver at windows level if you use a windows device type like SAPWIN or SWINCF in SAP. If the printer is a HP PCL printer, try creating a spool and print via a PCL device type like e.g. HPLJ4000. The problem should not happen in this case. But the solution is a corrected windows printer driver as per note #683605.
    Regards,
    Aidan

  • Arch Mirrors Layout

    Hi:
    I'm trying to set up a mirror of your server in order to provide arch pakages to my community and I have a question.
    Since I saw this mail list message I thought there's no reason for having a folder named 'any' under every repo folder.
    Is there any hidden reason for this or it is just cause not every package has migrated to the new layout yet ?
    Thxs.

    erick.red wrote:I want to know something.
    When package a-25.pkg.tar.gz is in testing is uploaded to pool/packages right ?
    in pool/packages are uploaded packages from core/extra/testing/gnome-unstable/kde-unstable/staging and in pool/community the rest.
    Now when the same version of the package is moved to core, the package is not re-uploaded, just the link moved eh ?
    Am I right ?
    you are correct. that was the whole point of implementing a pool directory. mirrors sync the actually package once and on move, they sync only the symlinks

  • Mirror pcb layout

    Hello to everyone!
    I have already made my PCB design and I already submit my design to the production house. As I discuss with my production house incharge, one of there requirements is to provide them with a COMBO type of PCB layout setup since my layout board is so small and to save cost. COMBO setup is a combination of two or more design boards in one dummy board. The second  board is just a mirror of the original board design. I just want to ask if it possible to mirror/ flip the design PCB layout without affecting the traces.
    Your reply is greatly appreciated.
    Keep posted,
    grebayno

    When you set up the properties for exporting Gerber files in Ultiboard you have the option to create a reflection file. So, you will need two files, one that is exported normally, which is the normal image of the board, and then export another set of files that will be exported with the Reflection check-box checked. Go to File >> Export... highlight the Gerber option (Gerber RS-274X) and click the Properties button. You will then see in the dialog a 'Reflection' option.
    Your production house will need to panelize those two files together in order to create one printing. (e.g. CopperTopOriginal with CopperTopReflected, and so on...)
    Nestor
    National Instruments

  • Mystery Mirror DMG File

    Alerted by a warning that my 45 gig hard drive was nearly full, I used WhatSize (thanks to a posted suggestion to another inquiry) and discovered that there was a 13.5 gig DMG file in USERS>MY NAME>LIBRARY>MIRRORS>WEIRD NUMERIC NAME folder.
    There were a few small files in this folder with strange numeric names, but the large DMG file had my .MAC account name - MYDOCMACNAME.DMG I have no idea how or why this file was created.
    13.5 gig is approximate the total of the free space I had last time I looked, which I believe was also after the creation date of all these files on the same day in May.
    Further confusing was that the Modified date showed a date and time in the future. I've deleted the entire numeric name sub folder to Mirrors, regained the space on my hard drive and the system seems stable.
    Can anyone suggest what action might have created this DMG file or the sub folder in the MIRRORS folder which had the numeric name? (I do not have any software like SuperDuper on my machine, but I do backup to .MAC using Apple Backup.)
    Thanks,
    George

    So is it OK to delete this Mirror Image file? Will iDisk sync be affected if one deletes it?
    Or even better, is it possible to point this file in another direction? I want to back up my Library using BackUp but this single Mirrors folder makes the Library abnormal in size and therefore not manageable from a back up to .mac `perspective
    thanks
    J

  • Storage Spaces Upgrade Mystery

    So I have a custom built server running Server 2012 Essentials. It has a storage spaces pool with a bunch of drives in parity config. I decided to upgrade to 2012 Essentials R2. I did the research and found it needed to be a clean install, but that was OK
    because I was planning on moving the OS off an older platter drive and install to an SSD. Then I researched migrating the storage spaces pool over once I had the new OS running. I found some people who said it was a pain, and some people who said it was easy.
    I found an article with the handful of powershell commands that should get my storage pool alive on R2 and upgraded to the R2 implementation of storage spaces.
    So here is the mystery. I could not install the OS with the storage pool drives attached. Windows setup only saw the SSD in the screen asking what drive I wanted to install on (good), but when I would select it, it would give me a weird message of "We
    couldn't create a new partition or locate an existing one. For more information, see the Setup log files." When I booted down and removed power from all the pool drives, this issue went away when I tried again and 2012 R2 essentials installed fine.
    So I got ready with my powershell commands and plugged in all the storage pool drives and booted the server back up. Shockingly, the storage spaces pool was just right there when I logged in. Fully intact, writable, and healthy. I didn't have to run any
    powershell commands to select it, make it writable, bring it online, convert it, etc... it just worked. I did try to run the update commandlet to bring the storage space current, and it asked me to confirm, but then it didn't seem to do anything after that,
    and calling the cmdlet to get current jobs showed nothing running.
    So I am not complaining, but I don't get why I was able to do this without any special steps, while every article and doc I found with people in similar situations had to jump through all sorts of hoops.
    Matt Kleinwaks - MSMVP MSDN Forums Moderator - www.zerosandtheone.com

    Move data from storage spaces to backup destination, make a clean OS install, re-create storage spaces from scratch (whatever disk layout you choose), move data back from backup location to storage spaces. Everything else is playing dice.
    StarWind VSAN [Virtual SAN] clusters Hyper-V without SAS, Fibre Channel, SMB 3.0 or iSCSI, uses Ethernet to mirror internally mounted SATA disks between hosts.

Maybe you are looking for

  • How do I find the location of a message found in a mail search?

    Can find emails, brand new or a couple of years old.  Have no idea how to out find where they are. There is no "Get Info." command to tell me how to locate the message(s).  Either in the mailboxes on my current "Mail 6.3" or, on a "Previous System" m

  • BOM Component quantity decimal places

    Hi... All.. how & where to maintain settings for decimal places for component quantity in a BOM..?? eg.,  Base unit of measure is KG n base quantity is 1KG         component quantity is o.5KG... at present system is not accepting decimal places.... 

  • Issue : In retransporting Smartforms in Quality server

    Dear All, In retransporting Smartforms in Quality server ,Smartforms is not executing from outside, but if i m going in display mode and executing from inside then i m able to execute it.But its getting executed when i transport the smartform with di

  • USEREXIT_XKOMV_BEWERTEN_END or USEREXIT_PRICING_PREPARE_TKOMP ?

    SD gurus. On a sales order Item.... ...we need to code some abap to find the correct condition value in my A-table. The condition value is stored on another customer in my A-table (we use customer hierarchy). I guess I have 2 alternatives: 1) Adjust

  • Update table in another SAP system

    Hi Guru's I have requirement, in which the outout of the report should be update Z table in another SAP System. How we can do this? Thanks Karthi