When I mouseover a cluster, I want to be able to click one of the flared out graphics and display the infoWindow without the cluster flaring back in. Is this possible?
map.addEventListener(FlareMouseEvent.FLARE_CLICK, flareClickHandler);
map.infoWindow.addEventListener("close", close);
map.infoWindow.closeButtonVisible = true;
private function flareClickHandler(event:FlareMouseEvent):void
{
//stop cluster from flaring back in until infoWindow closed???
showInfoWindow(event.graphic, event.stageX, event.stageY);
}
private function close(event:Event):void
{
//now allow cluster to flare in
}