Joseph,
You would have to look into changing updateAttributesEnabled to false after the editsComplete event is fired from the FeatureLayer (I don't have any specifics for you just this idea of where I would begin to look).
I forgot to get back to you about this. I've made some really good stride in OOP since then. I created 2 event handlers to create the functionality I was looking for. One for new comments and one for reviewing existing comments.For creating new comments this ActionScript code works: private function newCommentHandler():void
{
myEditor.updateAttributesEnabled = true;
myEditor.deleteEnabled = true;
}
For reviewing existing comments: private function stopEditsHandler():void
{
myEditor.updateAttributesEnabled = false;
sidewalkComments.selectedFeatures.valueOf();
bikelaneComments.selectedFeatures.valueOf();
myEditor.deleteEnabled = false;
}
When using them in the feature layer mxml: <esri:FeatureLayer id="sidewalkComments"
mode="snapshot"
outFields="[Comment, entered]"
visible="false"
url="http://...."
click="stopEditsHandler()"/>
<esri:FeatureLayer id="bikelaneComments"
mode="snapshot"
visible="false"
outFields="[Comment, entered]"
url=http://...."
click="stopEditsHandler()"/>
Success!!Thanks,JoeGIS Tech IIWashington County|Long Range Planning