Mouseover bring to front help needed

Hi all,

I’m new here and to flash and I don’t know where else to go so I hope I came to the right place. Any help I get will be greatly appreciated and please forgive my ignorance. I’m trying to build a map of my state with all the counties in it and when you wave your mouse over the county I want it to enlarge to show more detail. I was able to do this using buttons but when the county enlarges it is overlapped by the neighboring county. I’ve tried arrange>bring to front and sorting the layers but if not one county then it is an another. Only one county would be enlarged at one time (and be clickable) and on mouseout I would like to return to the original map. Is there an easy way to do this? (i.e. one that I would be able to understand with my limited actionscript abilities?)

Thanks

Steve

swapDepths();


on(rollOver) {
	this.swapDepths(_root.mcName);
}
on(rollOut) {
	this.swapDepths(_root.mcName);
}

just a basic example…but that’s probably the way to go…

Thanks for your help-I got it to work!!