hello,

just add

Actionscript Code:
_root.tooltip.gotoAndPlay(1);

to your showTip function so it reads:

Actionscript Code:
function showTip() {
_root.tooltip.gotoAndPlay(1);
    if(count == 1) {
        clearInterval(tipInt);
        count = 0;
        tooltip._x = _root._xmouse;
        tooltip._y = _root._ymouse;
        tooltip._visible = true;
        _root.onMouseMove = function() {
            tooltip._x = _root._xmouse;
            tooltip._y = _root._ymouse;
            updateAfterEvent();
           
        }
    }