for some reason Im getting the following error
Implicity coercion of a value with a static type flash.display:DisplayObject to a possibly unrelated type flash.display:MovieClip
The line the error points to is "addInfoBubble(item)" below
for(var i:Number=0; i < MapContainer.numChildren; i++) {
var item:DisplayObject = MapContainer.getChildAt(i);
if(item!=null && item is MovieClip){ // make sure its a movieclip
trace('Found movieclip');
addInfoBubble(item);
item.addEventListener(MouseEvent.MOUSE_OVER, countryMouseOver);
item.addEventListener(MouseEvent.MOUSE_OUT, countryMouseOut);
}
}