Hello, I'm having a problem with date display, any help would be appreciated.
The following code is to display a Maptip when the mouse is hovered over a point on the map. The field ???date??? is displaying a string of 1299253388999 in place of the actual date. I???m not sure how to format that a string as date/time for display. Might it be that the field I'm referencing is incorrectly name (a reserved name) might that be causing the issue?
protected function clues_graphicAddHandler(event:GraphicEvent):void
{
event.graphic.toolTip = event.graphic.attributes.date + "\n";
event.graphic.toolTip += event.graphic.attributes.verbal_description + "\n";
event.graphic.toolTip += event.graphic.attributes.comments;
}
Thanks
Jon