may be u want to ad a ToolTIp or something follow to the mouse when
you roll over your marker
try this
//marker = your marker
marker.addEventListener(MapMouseEvent.ROLL_OVER,followMouse);
followMouse(e:MapMouseEvent):void
{
addChild(Mcfollow); //the mc you want to follow your mouse
stage.addEventListener(MouseEvent.MOUSE_MOVE,moveMC);
function moveMC(){
Mcfollow.x = mouseX;
Mcfollow.y = mouseY;
}
--
You received this message because you are subscribed to the Google Groups
"Google Maps API For Flash" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-maps-api-for-flash?hl=en.