Solved! Go to Solution.
...
private var selectionSMS:SimpleMarkerSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 30, 0x00FF00, 0.5);
// private var selectionSMS:SimpleMarkerSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 6, 0x000000, 0);
...
/**
* Listen feature layer update end handler
*/
protected function onFeatureLayerUpdated(event:LayerEvent):void
{
if (featureLayer.selectedFeatures != null && featureLayer.selectedFeatures.length > 0)
{
Graphic(featureLayer.selectedFeatures[0]).symbol = selectionSMS; // for points
}
}