我正在寻找一种在滚动鼠标时禁用滚动垂直和水平滚动条的方法。
我使用鼠标滚动来放大和缩小,我不希望在滚动鼠标滚轮时滚动滚动条。 (但我确实需要滚动条可见)。
有什么办法吗?
提前致谢!
答案 0 :(得分:1)
尝试下面的一个我不确定,但它可能是有用的。
我修改代码对代码有点作弊,所以我不确定我会工作但只是试试这个。
[DivideBoxID].addEventListener(MouseEvent.MOUSE_WHEEL,mouseWheelHandler);
public function mouseWheelHandler():void
{
//Leave this space blank..
}
答案 1 :(得分:1)
[DivideBoxID].addEventListener(MouseEvent.MOUSE_WHEEL,mouseWheelHandler);
public function mouseWheelHandler():void
{
e.stopImmediatePropagation();
}