My widgets are not deactivating when they are closed. An example is my identify widget. I can identify a parcel in my parcel layer. When I close the widget viewer it removes the selected parcel graphic layer and deselects the widget. It does not deactivate my cursor, so the when a parcel is clicked it still fires the identify widget even though it is closed. It does not open the widget but it highlights the parcel. How can I completely deactivate the widget when it is closed? Below is my close handler. Thanks, private function wTemplate_closedHandler(event:Event):void { clear(); hideInfoWindow(); removeCursor(); CursorManager.removeAllCursors(); this.currentState = "IdentifyInput"; wTemplate.selectedTitlebarButtonIndex=0; setMapNavigation(null, null); setMapAction(null, null, null, null); // deactivate drawTool map.removeLayer(graphicsLayer); map.removeLayer(parcelGraphicsLayer); map.openHandCursorVisible = true; }