Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
Adobe Flex SDK 4.1 (Release)
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1. load the bugfile ImageExample.mxml
The application has the following code:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" layoutDirection="rtl">
<s:layout>
<s:VerticalLayout />
</s:layout>
<s:Label text="BitmapImage: " />
<s:BitmapImage source="@Embed('Trip.01.JPG')" />
<s:BitmapImage source="@Embed('Trip.01.JPG')" layoutDirection="rtl"/>
<s:Label text="MX Image: " />
<mx:Image source="@Embed('Trip.01.JPG')" />
<mx:Image source="@Embed('Trip.01.JPG')" layoutDirection="rtl"/>
</s:Application>
Actual Results: The second Image has layoutDirection="rtl" specified, but, it does not mirror.
Expected Results: The second Image should mirror. BitmapImage works correctly.
Workaround (if any):