OnMouseOver Question

If I need to know which label the mouse is over, should I use OnMouseover? If I have one label stacked on top of another, but I need the bottom label to be considered active, should I use OnMouseOver, or is there another way to do it?

Basically, I’m trying to implement inventory slots. Each slot is a label. I need to be able to track which slot the cursor is currently over at any given time. Is On MouseOver the way to go, even considering that actual inventory item labels may be stacked on top of the slots?

I think this is a good way to go. You should be able to put some code in OnMouseOver to distinguish which control is active in case of ambiguities.