Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Adobe Flex SDK 4.1 (Release)
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1.Compile and run
<?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"
direction="rtl" layoutDirection="rtl">
<mx:TileList
width="150" height="150"
selectedIndex="0" dataProvider="
" dragEnabled="true" dropEnabled="true">
<fx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
public function createAC():ArrayCollection
{ var col:ArrayCollection = new ArrayCollection(['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']); return (col); } ]]
>
</fx:Script>
</mx:TileList>
</s:Application>
2. Try to drag item "A"
Actual Results:
dragProxy location is not correct
Expected Results:
Workaround (if any):