<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Robert's Identify Widget keepActive flag stops popups in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/robert-s-identify-widget-keepactive-flag-stops/m-p/258437#M6099</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, Robert - that's it.&amp;nbsp; You know your stuff.&amp;nbsp; thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just had to add the function name to showDrawTips:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;drawTool.&lt;/STRONG&gt;&lt;SPAN&gt;showDrawTips == false) ? drawTool.activate(tool, true) : drawTool.activate(tool);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And, place the true parameter on the activateIdentifyTool function's activate lines:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;drawTool.activate(DrawTool.MAPPOINT,&lt;/SPAN&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure why I had to do the second part.&amp;nbsp; But, it works perfectly.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Oct 2011 14:13:02 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2011-10-31T14:13:02Z</dc:date>
    <item>
      <title>Robert's Identify Widget keepActive flag stops popups</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/robert-s-identify-widget-keepactive-flag-stops/m-p/258435#M6097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm trying to think of a way that popups would continue to display over graphics while the keepActive flag is true(drawTool active) in Robert's Enhnaced Identify Widget.&amp;nbsp; Currently, they do not display while in drawing mode.&amp;nbsp; Maybe, what I want to do is not possible.&amp;nbsp; Does anyone know of a way to do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am wondering if I could place a listener on the drawTool itself.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;drawTool.addEventListener(MouseEvent.MOUSE_MOVE, mouseMovedOverGraphic);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;function mouseMovedOverGraphic();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; // get cursor x y&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; // drill into graphics layer to find graphic at timer interval&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; // show popup at cursor position &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone done something like this or have another idea? thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Oct 2011 19:31:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/robert-s-identify-widget-keepactive-flag-stops/m-p/258435#M6097</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-10-28T19:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Robert's Identify Widget keepActive flag stops popups</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/robert-s-identify-widget-keepactive-flag-stops/m-p/258436#M6098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; You can but the change would have to be in the MapManager.mxml...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Search the MapManager.mxl for:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;drawTool.activate(tool);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and replace it with this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;(showDrawTips == false) ? drawTool.activate(tool, true) : drawTool.activate(tool);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The above is the best I can think of right now to determine if the activate came from the identify tool. As my identify tool is presently the only one that is calling for the showDrawTips to not be shown. The second optional parameter in the activate function tells the drawtool to enableGraphicsLayerMouseEvents.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Oct 2011 19:50:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/robert-s-identify-widget-keepactive-flag-stops/m-p/258436#M6098</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2011-10-30T19:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Robert's Identify Widget keepActive flag stops popups</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/robert-s-identify-widget-keepactive-flag-stops/m-p/258437#M6099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, Robert - that's it.&amp;nbsp; You know your stuff.&amp;nbsp; thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just had to add the function name to showDrawTips:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;drawTool.&lt;/STRONG&gt;&lt;SPAN&gt;showDrawTips == false) ? drawTool.activate(tool, true) : drawTool.activate(tool);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And, place the true parameter on the activateIdentifyTool function's activate lines:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;drawTool.activate(DrawTool.MAPPOINT,&lt;/SPAN&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure why I had to do the second part.&amp;nbsp; But, it works perfectly.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2011 14:13:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/robert-s-identify-widget-keepactive-flag-stops/m-p/258437#M6099</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-10-31T14:13:02Z</dc:date>
    </item>
  </channel>
</rss>

