Something like this
PHP Code:
function onCreated()
setTimer(0.05);
function onTimeout()
{
this.over = false;
if (mousex in |this.x, this.x+this.width|)
{
if (mousey in |this.y, this.y+this.height|)
{
this.over = true;
}
}
if (this.over)
showimg(201, blah);
else
hideimg(201);
setTimer(0.05);
}