Hey,
I’m trying to create tool tip rollovers for buttons, a little bubbled message that pops up and follows the cursor while the cursor is ontop of a button. Kinda like the tooltips in windows, instead it moves. Hope that makes sense.
the problem i’m having is creating a loop within the rollOver event so that the x/y co-ords for my tooltip movieclip updates each time the mouse moves
is there any other way of doing this?
here’s what i have so far
button1.onRollOver = function() {
mc_tooltip._x = xmouse;
mc_tooltip._y = ymouse;
}
the problem with what i have now is that the tooltip movieclip doesnt continue to move along with the cursor while on rollOver
thanks in advance