How do I add an interaction to a single item in a menu? Let’s say I have a horizontal menu with the items “Men”, “Women”, “Children” and I want a box to appear when the mouse hovers over the item “Men”, but NOT “Women” and “Children”. I have tried to use this event thing: " horizontalMenu1_itemMouseIn ( event ) ", which is cool and all, but I would like to be able to CHOOSE which item I want this event to happen to, not just all of them. The menu itself has an ID (#horizontalMenu1), but the items within the menu doesn’t (to my knowledge), but IF the menu items did have IDs it would solve my problem. So, basically I want to specify the item in the menu I want to add an event to, not just the “menu items” in general.
I have tried to research the code refrences for this but I haven’t understood any of them and it doesn’t seem like they do the things I want.