Maybe, just maybe, the error message might be telling you what is wrong. MovieClip is not a function.

You want getChildByName.

Actually, looking at that code, I have no idea why you're messing with the name at all.
Code:
function regionRollOver(evt:MouseEvent):void
{
  MovieClip(evt.target).alpha = .5;
} //regionRollOver()