Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): Windows
Language Found: English
Description
Steps to reproduce:
1. Run the following code
<?xml version="1.0"?>
<mx:Application verticalAlign="middle" layout="vertical" xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
import mx.managers.CursorManager;
private function showBusy(event:MouseEvent):void
private function removeBusy(event:MouseEvent):void
{ CursorManager.removeBusyCursor(); } ]]
>
</mx:Script>
<mx:Button id="s" label="show busy" click="showBusy(event)"/>
<mx:Button id="r" label="remove busy" click="removeBusy(event)"/>
</mx:Application>
2. Click on "show busy" button. Now right click to show the context menu
3. Now click outside so that the context menu disappears. Observe results
Actual Results:
Once the context menu disappears, there are 2 cursors (both the normal as well as the busy cursor)
Expected Results:
Only one cursor (the busy cursor) is expected