Hi,I have an application that utilizes an Identify Task to select and show a popup Info Window on certain layers. This works fine untilthe Measurement Widget is activated and an Info Window popups up every time a distance is measured. I have come across many threads that deal with this issue but have had no luck implementing any of them. How do I deactivate the Info Window when using the Measure Widget? Any help is greatly appreciated!!//Measurement Tool var measurement = new esri.dijit.Measurement({ map: map, defaultLengthUnit: esri.Units.FEET, }, dojo.byId('measurementDiv')); measurement.startup(); dojo.connect(measurement, "onMeasureEnd", function(activeTool,geometry){ this.setTool(activeTool, false), }); //Identify Event function executeIdentifyTask(evt) { identifyParams.geometry = evt.mapPoint; identifyParams.mapExtent = map.extent; var deferred = identifyTask.execute(identifyParams); deferred.addCallback(function(response) { return dojo.map(response, function(result) { var feature = new esri.Graphic(result.feature.toJson());; feature.attributes.layerName = result.layerName; if(result.layerName === 'Section Corners' || result.layerName === 'Accessory Monuments'){ // console.log(feature.attributes.POINT_NAME); var template = new esri.InfoTemplate("Monuments", "Point Name: ${POINT_NAME}<br/><a target='_blank' href='http://surveyor.slco.org/jsapi/map/mrs_javamap.cfm?LAT=${LATITUDE}&LONG=${LONGITUDE}&POINT_NAME=${POINT_NAME}'>Mon. Ref. Sheet</a>"); feature.setInfoTemplate(template); } else if (result.layerName === 'Surveys'){ var template = new esri.InfoTemplate("Surveys", "${SURVEYOR}<br/> Survey Number: ${DOCUMENT_N}<br/><a target='_blank' href='http://surveyor.slco.org/jsapi/map/sire_survey_image.cfc?page_id=${page_id}'>Survey PDF Document</a>"); feature.setInfoTemplate(template); } return feature; }); }); map.infoWindow.setFeatures([ deferred ]); map.infoWindow.show(evt.mapPoint); }