David_Rampartab wrote:
The User needs to rollover one of the 8 boxes and press enter which is in the middle of the circle. The reason I am using Mouse Exits is to hide the image before and after because they are being displayed in the same area. Let me see if I understand this correctly. You have eight different rollover areas. You have an action that can only happen if the mouse is still in a rollover area. If the mouse is outside of those eight, then nothing is supposed to happen. Do I read that correctly?If that's the case, then you could have a variable called MousePosition. Set each hotspot as follows:On Mouse Enter Area 1: MousePosition = 1On Mouse Exit Area 1: MousePosition = 0On Mouse Enter Area 2: MousePosition = 2On Mouse Exit Area 2: MousePosition = 0On Mouse Enter Area 3: MousePosition = 3On Mouse Exit Area 3: MousePosition = 0And so on.Then your actions would go off only if MousePosition = 1 or 2 or 3 or...Would that help out?KevinEdit: Upon rereading your initial post, I don't think I do have the right grasp of what you want. But if you just want to verify that nothing else has been moused over, then setting the variable to a value from 1 to 8 should do it.Edited By: Kevin Elmore on 2008-5-14 13:8:30