Original User: philipp37Robert,Thanks! When I implemented your code the cursor symbol just would not disappear after closing the widget. I had to reiterate that line of code you had indicated to make it work for me - probably not the most elegant method but it seems to work so far:private function widgetClosedHandler(event:Event):void
{
map.removeEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
map.panEnabled = true;
map.cursorManager.removeCursor(map.cursorManager.currentCursorID);
setMapNavigation(null, null);
map.cursorManager.removeCursor(map.cursorManager.currentCursorID);
}