Activating a button underneath the mouse: how do you capture the OVER event?
- by cgs
Observed behavior:
I have a page of UI sliding onto the screen.
On slide complete, activate buttons.
If mouse already over a button, the rollover does not happen (since MOUSE_OVER hasn't technically occurred)
Desired behavior: 1, 2 the same, but on 3, I see my rollover.
Is there any way to easily do this, aside from something brute-force, like tracking the mouse and comparing its position against all buttons dims?
Thanks!