Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Adobe Flex SDK 3.2 (Release)
-
None
-
None
-
Affected OS(s): Windows
Affected OS(s):
Language Found: English
Description
Steps to reproduce:
1. Use source:
<!-- ColorPickerPopupBug.mxml -->
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:local="*">
<mx:Script><![CDATA[
import mx.managers.PopUpManager;
]]
></mx:Script>
<mx:TitleWindow title="Title" width="100%" height="100%">
<mx:Button label="Open popup" click="PopUpManager.createPopUp(this, TestPopup, true);"/>
</mx:TitleWindow>
</mx:Application>
<!-- TestPopup.mxml -->
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
title="Test popup" layout="horizontal">
<mx:TextInput/>
<mx:ColorPicker/>
</mx:TitleWindow>
2. Click button to open popup
3. Use keyboard Ctrl+Down to open picker. Note cursor keys navigate correctly.
4. Use tab navigation (without closing popup).
Actual Results:
Focus switches between main application button and popup text input.
Expected Results:
ColorSwatch closes or selected color changes.