我正在尝试使用一个movieclip作为按钮,但是鼠标光标不会在悬停或点击时显示...我已经尝试了堆栈溢出的答案,添加了movieClip.cursor =“pointer”;到代码的顶部,但在我的情况下没有鼠标指针,(也不是在Mozilla中,也不在Chrome中......)
在我以前使用的3.0中:buttonMode =“true”,为什么.. .cursor =“pointer”在canvas / html5中不起作用...这是一个简单的代码.. ?
这是我的代码
this.stop();
this.shape_mc.cursor = "pointer";
this.shape_mc.addEventListener("click", fl_MouseClickHandler.bind(this));
function fl_MouseClickHandler()
{
this.play();
}