I am trying to somehow indicate to a user a particular graphic on a map.The trigger for this is the mouse hovering over an item on a list.This is all pretty trivial until I changed the graphics to clustered graphics.The basic functionality I have currently is:I have a graphics layer used purely for highlighting items on a list to the user.Items in the list (datagrid) have an ID.Graphics in the graphics layer have this ID in their attributes.When a user hovers over an item on the list, a function is called which iterates through all graphics in the graphic provider of the graphics layer. If the graphic's attribute's ID matches the list items ID, the graphic's symbol is changed.On a hover out event, the symbol is changed back to the default symbol. This works well currently.Now if I additionally add a weightedCluster (with flare symbol) to the graphics layer, I want the cluster that contains the graphic corresponding to the list item to flash/highlight/flare/etc. The highlight function has to work slightly differently because the graphics layer's graphicProvider doesn't know about the cluster, I have to iterate through the graphic layers children, and inspect each graphic, if it is a 'ClusterGraphic', check it's graphics for a match. I can find the correct cluster graphic, but then I'm stuck on what to do.Changing the ClusterGraphic's Symbol does nothing, assigning it a new Flare Symbol also does nothing.What I have so far:var g:graphic = myGraphicOfInterest; for (var j:int = 0, m:int = graLayer.numChildren; j < m; j++) { var cgraphic:Graphic = graLayer.getChildAt(j) as Graphic; if (cgraphic is ClusterGraphic){ for each (var cg:Graphic in cgraphic.attributes.graphics){ if (cg.attributes == g.attributes){ //cgraphic.symbol = mySimpleMarkerSymbol;//Does nothing //dispatchEvent(new AppEvent(FlareEvent.FLARE_IN_START));//Something like this would be ideal var fs:FlareSymbol = new FlareSymbol(); fs.backgroundColor = 0x0000FF; fs.size = 40; cgraphic.symbol = fs; cgraphic.scaleX = 2; cgraphic.refresh(); graLayer.refresh(); } } } } None of these changes above has any effect on the graphic on the map when this is called.I can change properties of the already assigned FlareSymbol, but this changes ALL clusterGraphics, not just the one I want.The application if based on the Sample Flex Viewer.ActionScript code is appreciated over MXML.Does anyone have any ideas on what to try?ThanksAndrew