Possible to disable mouse-wheel in Draw

Anyone found a way to do this either via a macro or another method? I dont want to stop it working outside Corel, only within it as its real sensitive to movement.

Cheers guys!

Parents
No Data
Reply
  • Andy Carolan said:
    Anyone found a way to do this either via a macro or another method? I dont want to stop it working outside Corel, only within it as its real sensitive to movement.

    I'm a bit confused, are you accidentally using the mouse wheel while using Draw?

    You could write an autohotkey script which checks if the active application is Draw, and if so, does nothing on mouse wheel

    #IfWinActive, CorelDRAW
      *WheelUp::
      *WheelDown::
    #IfWinActive

     

Children