Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Later
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): Mac
Language Found: English
Description
Steps to reproduce:
1. Create a mobile Flex project:
<?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">
<s:layout>
<s:VerticalLayout/>
</s:layout>
<s:HGroup verticalAlign="middle" width="100%">
<s:Label text="Device Name:" color="0xCCCCCC"/>
<s:TextInput id="deviceNameTextInput" fontSize="24" width="100%" />
</s:HGroup>
<s:HGroup verticalAlign="middle" width="100%">
<s:Label text="Device Type:" color="0xCCCCCC"/>
<s:SpinnerListContainer minWidth="0" width="100%">
<s:SpinnerList id="deviceTypeSpinnerList" width="100%" height="100%">
<s:dataProvider>
<s:ArrayList>
<fx:String>Android Gingerbread 4.3</fx:String>
<fx:String>Android Gingerbread 4.4</fx:String>
<fx:String>Android Gingerbread 4.5</fx:String>
<fx:String>Android Gingerbread 4.6</fx:String>
<fx:String>Android Gingerbread 5</fx:String>
<fx:String>Android Gingerbread 5.1</fx:String>
<fx:String>Android Gingerbread 5.2</fx:String>
</s:ArrayList>
</s:dataProvider>
</s:SpinnerList>
</s:SpinnerListContainer>
</s:HGroup>
<s:HGroup verticalAlign="middle" width="100%">
<s:Label text="Serial Number:" color="0xCCCCCC"/>
<s:TextInput id="serialNumberTextInput" fontSize="24" width="100%" />
</s:HGroup>
</s:Application>
2. Mouse down on the spinner list to do a drag scroll
3. Drag over the text input
Actual Results:
While the mouse is over the TextInput the drag scrolling seems to suspend or act strangely
Expected Results:
Same behavior as on device, mousing over the TextInput is no different than mousing over any other component
Workaround (if any):