I have a tool that creates labels (graphics) when the user clicks on a button and then on the map. Is there a way to delete these labels one by one? Thank you!!! Here is the code: private function addtext():void { myMap.addEventListener(MapMouseEvent.MAP_CLICK, onClickFunction); } private function onClickFunction(event:MapMouseEvent):void { const mapPoint:MapPoint = event.mapPoint; mapPoint.spatialReference = new SpatialReference(102100); var myGraphicMarker:Graphic = new Graphic(mapPoint, new TextSymbol(labeltext.text,null,0x000000,1, tsBorder.selected,tsBorderColor.selectedColor,tsBackground.selected,tsColor2.selectedColor,placement.selectedItem,angle.value,xoffset.value,yoffset.value,new TextFormat(myFont.selectedItem, tfSize.value, tsColor1.selectedColor, tfBold.selected,tfItalic.selected, tfUnderline.selected), null,null)); theTextGraphic = myGraphicMarker //myGraphicMarker.toolTip = "Marker added with ActionScript"; pointGraphicsLayer.add(theTextGraphic); pointGraphicsLayer.refresh(); }