mouse wheel customisation

I am using Bricscad v14 for windows. I also use Sketchup and, therefore, keep hitting the shift button plus the mousewheel to pan when I am using Bricscad.
Is there a way to make this real-time pan in 2D?

Comments

  • No way that I know of with Bricscad alone, but it is easy to change mouse functions with AutoHotKey (www.autohotkey.com).  The "in 2D" may be a bit more difficult if you want a change that only happens in 2D modes.  Please post back if you need suggestions on how to implement this.
  • Thank you for your advice. I am most grateful.
    I have downloaded autohotkey. It looks as if I will have to learn how to use it later.
    You seem to be right - Bricsys came back to me and said, 'There is no need to press the shift key'.
    I know that!
    But I keep doing it by mistake - presumably because I am used to using Sketchup.
    Anyway, I have learny about autohotkey - so something good has come from it.
  • To help you get started, I use this header in my autohotkey file:

    [code]
    #NoEnv
    #Persistent
    #SingleInstance force
    #UseHook on
    Process, priority, , high
    SetTitleMatchMode 1
    SendMode Input

    #ifWinActive BricsCAD
    {
    }
    [/code]

    Your code goes between the last pair of braces.
This discussion has been closed.