Hi i have this code which allows me to replace the mouse cursor with an image but i would also like to change the image when the mouse is clicked down using a different image. the code i am using for just replacing the mouse cursor is:

Mouse.hide();
stage.addEventListener(MouseEvent.MOUSE_MOVE,follo w);
function follow(evt:MouseEvent){
hover1_mc.x = mouseX;
hover1_mc.y = mouseY;
}

i tried using a different code which i found but it failed to work with my project can anyone help me please