Access of possibly undefined property useHandCursor

bold line gives me an error, and I use movieClips which have buttonMode set to true:

var target:DisplayObject;
function overList(e:MouseEvent):void {
    
    target = DisplayObject(e.target);
    
    if (e.target.name == myArray[blueCounter]) {

        **target.useHandCursor = false;**
        target.removeEventListener(MouseEvent.CLICK, clickPlaylist);
    }
    
}

1119: Access of possibly undefined property useHandCursor through a reference with static type flash.display:DisplayObject.