Implementing google map in Flash cs4 seems very different in terms of its code used. How could I apply mouseevent to a marker?
GEvent.addListener(marker, "mouseover", function() {markerClick()});
return marker;
function markerClick():void {
trace("You clicked the map.");
}