6ril Posted April 6, 2016 Share Posted April 6, 2016 hey, I'm trying to set the mouse button 4 and 5 (thumb buttons) as shortcuts. Actually I'm just trying to set a thumb button to "jump back" in the network view, for it to behave like in windows and most browsers (a back button) I keep pressing it when I need to "jump back" so I thought why not. But when in the hotkey window, there's nothing about the mous buttons :/ Is it not possible ? Quote Link to comment Share on other sites More sharing options...
f1480187 Posted April 8, 2016 Share Posted April 8, 2016 I use AutoHotkey (http://ahkscript.org/) for apps with limited variety of hotkeys. It can map any combination to another one. ; Script header. #SingleInstance force SetTitleMatchMode, RegEx ; Houdini-specific part. #IfWinActive Houdini ; Check for word "Houdini" in the title. XButton1::!Right XButton2::!Left #IfWinActive This script will map thumb buttons (XButton1 and XButton2) to Alt + Right Arrow and Alt + Left Arrow presses which are standard Houdini bindings for navigation buttons. If you changed it, use a new combinations instead. 2 Quote Link to comment Share on other sites More sharing options...
6ril Posted April 8, 2016 Author Share Posted April 8, 2016 (edited) Thanks Does it mean that it is not possible, without a third party soft, to customise mouse button in H15 ? Edited April 8, 2016 by 6ril Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.