How do I show multiple images when I hover over different areas with the MouseOver function?
I’ve been working on a flash simulator to show what our Expert Range Finder binocular product would look like. The idea is to hover over an area, or image and it show the range or how far the object is from you.

I have been successful in making it work with the following code below. Yet I cannot add several "range" images (or symbols) when I hover over a certain area. Can someone help me with the code? I looked for hours on the internet and I cannot get it to work. I am new to Flash but am starting to learn as much as I can. Any help is appreciated! Thanks!
Actionscript 3 Code:
img_nv.mask = mask2_mc;
mask2_mc.buttonMode=true;
mask2_mc.addEventListener(MouseEvent.MOUSE_DOWN, onDown);
mask2_mc.addEventListener(MouseEvent.MOUSE_UP, onUp);
function onDown(e:MouseEvent):void{
mask2_mc.startDrag();
}
function onUp(e:MouseEvent):void{
mask2_mc.stopDrag();
}
