<?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: limit popup visibility to feature visibility in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398447#M11432</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Rschietlin&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;turns out i had implemented it in the way you corrected it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and it still didn't work, but if i tried it in a 'clean' version of 2.4 flexveiwer ( i.e. no customisation) and it worked&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;got very depressed at this as i though it meant i would have major issues &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then by accident i tried it in my application with a layer that did not have a visibility limit ( visible at all scales ) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and it worked&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so turns out that if i have the features visibility limited to a certain scale this method doesn't work&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ANSWER is ( drum roll .....)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;use &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;featureLayer.addEventListener(LayerEvent.&lt;STRONG&gt;IS_IN_SCALE_RANGE_CHANGE&lt;/STRONG&gt;, checkMapScale);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;instead of &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;featureLayer.addEventListener(LayerEvent.&lt;STRONG&gt;UPDATE_END&lt;/STRONG&gt;, checkMapScale);&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Sep 2012 07:20:16 GMT</pubDate>
    <dc:creator>AHay</dc:creator>
    <dc:date>2012-09-20T07:20:16Z</dc:date>
    <item>
      <title>limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398438#M11423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; anyone tell me how i can hide the popup when the feature is no longer visible due to scale visibility (using map.infoWindow.hide())&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i have feature that are no visible below 1:100000, if a click on a feature to get the popup, if i then zoom further ( i.e. below 1:100000) the feature is no longer visible but the popup is, if keep zooming i can zoom to map extent and the whole time the pop up is pointing to the feature )&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have made it hide popup&amp;nbsp; if the user changes to the zoom tool or the pan tool but if they use "double click" on map or the scroll wheel i cannot hide the popup &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 00:27:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398438#M11423</guid>
      <dc:creator>AHay</dc:creator>
      <dc:date>2012-09-12T00:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398439#M11424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A Hay,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; I would attach an event listener to the layer that would call the map.infoWindow.hide() when the layer reaches the min scale or maybe just on listening for the layers visibility.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 11:08:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398439#M11424</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-09-12T11:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398440#M11425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;sorry can you please point me towards some documentation on How To use Event Listeners, i thought i knew how to do it and that this was straight forward but i can not work it out ( missing something simple ).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As you mentioned all i need to do is add an event listener to the layer that checks its visibility and if not visible hides the info window&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Sep 2012 23:10:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398440#M11425</guid>
      <dc:creator>AHay</dc:creator>
      <dc:date>2012-09-16T23:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398441#M11426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A Hay,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; So I need to know some more info from you then. Are you talking Flex Viewer 3.0 (you should always specify what version when asking code questions)? What type of layer is is feature, dynamic? Maybe you will not need to answer these if all you need is the code code snippet:&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;layer.addEventListener(FlexEvent.HIDE, layer_hideHandler);&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 02:35:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398441#M11426</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-09-17T02:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398442#M11427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sorry you are exactly correct. i should add details of project &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;viewer&amp;nbsp; -&amp;nbsp;&amp;nbsp; 2.4 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;layer&amp;nbsp;&amp;nbsp; - feature layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;my problem is how and where to implement it&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the layer gets added dynamically from a table the user selects project from.&amp;nbsp; some projects only want to have visibility down to 1:100000 i need to add an eventlistener on the ZOOM event and if map.scale &amp;lt; layer.visibility then infowindow.hide()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so i assume i just write a simple function with logic described above (map.scale &amp;lt; ... etc)that gets called when the zoom event is fired but where would i write this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;should i add this to mapManager.mxml?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 03:51:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398442#M11427</guid>
      <dc:creator>AHay</dc:creator>
      <dc:date>2012-09-19T03:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398443#M11428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A Hay,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; So, yes in 2.4 you would add that in the MapManager.mxml in the addLayerToMap function&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;if (label == "Louisville Places")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayer.addEventListener(LayerEvent.UPDATE_END, checkMapScale);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Than add this new function to the MapManager.mxml:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private function checkMapScale(event:LayerEvent){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(map.scale &amp;lt; 100000){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.hide();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:12:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398443#M11428</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T18:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398444#M11429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi rscheitlin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;sorry but now i am really confused,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in example how would the checkMapScale function get called?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;seem that it is calling itself if map.scale &amp;lt;100000&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function checkMapScale(event:LayerEvent){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(map.scale &amp;lt; 100000){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayer.addEventListener(LayerEvent.UPDATE_END, checkMapScale);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i am missing something &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;would i put a line in the if statement within the addLayertoMap function (MapManager.mxml) which had the ventlistener in it and tell it to run checkMapScale ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:12:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398444#M11429</guid>
      <dc:creator>AHay</dc:creator>
      <dc:date>2021-12-11T18:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398445#M11430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A Hay,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Sorry I messed the code all up when I posted.. I have edited the post, correcting the code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 03:07:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398445#M11430</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-09-20T03:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398446#M11431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Phew, thats is good news i thought i had totally misunderstood how event worked&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for your quick response &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i will implement know and then tick box as answered etc&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 05:10:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398446#M11431</guid>
      <dc:creator>AHay</dc:creator>
      <dc:date>2012-09-20T05:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: limit popup visibility to feature visibility</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398447#M11432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Rschietlin&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;turns out i had implemented it in the way you corrected it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and it still didn't work, but if i tried it in a 'clean' version of 2.4 flexveiwer ( i.e. no customisation) and it worked&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;got very depressed at this as i though it meant i would have major issues &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then by accident i tried it in my application with a layer that did not have a visibility limit ( visible at all scales ) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and it worked&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so turns out that if i have the features visibility limited to a certain scale this method doesn't work&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ANSWER is ( drum roll .....)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;use &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;featureLayer.addEventListener(LayerEvent.&lt;STRONG&gt;IS_IN_SCALE_RANGE_CHANGE&lt;/STRONG&gt;, checkMapScale);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;instead of &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;featureLayer.addEventListener(LayerEvent.&lt;STRONG&gt;UPDATE_END&lt;/STRONG&gt;, checkMapScale);&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 07:20:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/limit-popup-visibility-to-feature-visibility/m-p/398447#M11432</guid>
      <dc:creator>AHay</dc:creator>
      <dc:date>2012-09-20T07:20:16Z</dc:date>
    </item>
  </channel>
</rss>

