<?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 FeatureLayer Selection Symbol in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730294#M16195</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've noticed in a few of the samples that when a polygon is selected, the graphic is highlighted by a yellow glow effect.&amp;nbsp; This appears to be the default symbol in the API.&amp;nbsp; However if I use the sample and use one of my feature layers, I do not get the yellow glow, its just a dark yellow line that is hard to see.&amp;nbsp; I get the yellow glow when I use a feature layer that uses points instead of polygons.&amp;nbsp; Any thoughts?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Oct 2010 15:58:40 GMT</pubDate>
    <dc:creator>JustinGreco</dc:creator>
    <dc:date>2010-10-29T15:58:40Z</dc:date>
    <item>
      <title>FeatureLayer Selection Symbol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730294#M16195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've noticed in a few of the samples that when a polygon is selected, the graphic is highlighted by a yellow glow effect.&amp;nbsp; This appears to be the default symbol in the API.&amp;nbsp; However if I use the sample and use one of my feature layers, I do not get the yellow glow, its just a dark yellow line that is hard to see.&amp;nbsp; I get the yellow glow when I use a feature layer that uses points instead of polygons.&amp;nbsp; Any thoughts?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 15:58:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730294#M16195</guid>
      <dc:creator>JustinGreco</dc:creator>
      <dc:date>2010-10-29T15:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureLayer Selection Symbol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730295#M16196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey Justin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The FeatureLayer internally uses a GlowFilter for the yellow glow.(&lt;/SPAN&gt;&lt;A href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filters/GlowFilter.html"&gt;http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filters/GlowFilter.html&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The GlowFilter.inner(&lt;/SPAN&gt;&lt;A href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filters/GlowFilter.html#inner"&gt;http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filters/GlowFilter.html#inner&lt;/A&gt;&lt;SPAN&gt;) property is set to true for polygons by default(case of adjacent polygons), thus overlaying on top of the color(symbol) of your polygon data set causing the dark yellow line. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You could try setting FeatureLayer.selectionColor to a color which produces the same effect as the samples.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 17:37:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730295#M16196</guid>
      <dc:creator>SarthakDatt</dc:creator>
      <dc:date>2010-10-29T17:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureLayer Selection Symbol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730296#M16197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Sarthak,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So the GlowFilter is not part of the API for polygons?&amp;nbsp; I get the GlowEffect for point feature layers.&amp;nbsp; I think I know how to implement the GlowFilter, but I just thought it was built into the API.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 17:50:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730296#M16197</guid>
      <dc:creator>JustinGreco</dc:creator>
      <dc:date>2010-10-29T17:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureLayer Selection Symbol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730297#M16198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The filter is applied to selected features on the featureLayer. You "see" the glow effect on points and lines as we have inner=false(default) on these geometry types, but for polygons we chose to have inner=true.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Right now, the only thing you can change on the 'filter' is the color(through the selectionColor property)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 19:41:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/featurelayer-selection-symbol/m-p/730297#M16198</guid>
      <dc:creator>SarthakDatt</dc:creator>
      <dc:date>2010-10-29T19:41:27Z</dc:date>
    </item>
  </channel>
</rss>

