Windows Key in Softimage
-
Falam
Windows Key in Softimage
I realized that there is one keyboard command that is not in Softimage Keyboard mapping, that is the Windows Key. If the Windows Key could be part of Softimage Key Mapping it would open up a whole new keyboard short-cut world
I don't know if this has been mentioned before, or if I'm the first
It would be beneficial, maybe only to me, I dunno 
-
gaboraa
- Posts: 317
- Joined: 16 Apr 2010, 21:14
Re: Windows Key in Softimage
I think the whole concept of key assignment has aged like many other features have been. It should be way efficient if the developers make something like Maya and cinema 4D. For example C4D allows assigning any key to any command. In this way many possibilities would be opened for the users.
-
rray
- Moderator
- Posts: 1810
- Joined: 26 Sep 2009, 13:51
- Location: Bonn, Germany
Re: Windows Key in Softimage
I have a big autohotkey script running for everything that's so not quite configurable in Windows.
You could map things like Win+mousewheel up to frame forward, win+mousewheel down to go a frame backwards. etc
You could map things like Win+mousewheel up to frame forward, win+mousewheel down to go a frame backwards. etc
softimage resources section updated Sep 26th 2026
-
Falam
Re: Windows Key in Softimage
You can't map internal Softimage commands with AHK.rray wrote:I have a big autohotkey script running for everything that's so not quite configurable in Windows.
You could map things like Win+mousewheel up to frame forward, win+mousewheel down to go a frame backwards. etc
-
rray
- Moderator
- Posts: 1810
- Joined: 26 Sep 2009, 13:51
- Location: Bonn, Germany
Re: Windows Key in Softimage
Not directly no, I meant using obscure keyboard combos you woudn't otherwise map like ctrl+alt+shift+pos1.. pretty useful especially the mousewheel to scrub the timeline
softimage resources section updated Sep 26th 2026
-
Falam
Re: Windows Key in Softimage
I could assign the Windows key to a Softimage add-on using AHK, if so, very interesting, I have AHK installed, how would this be setup ? (It is a nice tool to have, I know you agree RRay)rray wrote:Not directly no, I meant using obscure keyboard combos you woudn't otherwise map like ctrl+alt+shift+pos1.. pretty useful especially the mousewheel to scrub the timeline
-
rray
- Moderator
- Posts: 1810
- Joined: 26 Sep 2009, 13:51
- Location: Bonn, Germany
Re: Windows Key in Softimage
Especially using a mouse where you can switch off the wheel's mechanical snapping ))
I have startup.ahk file with everything in it in myDocuments folder and put a link to it in Windows Autostart, should be all that's needed. Inside the script, write something like
#q::Send !+{F9}
which sends ALT+Shift+F9 when Win+q is pressed. There's some syntax too which makes it active only in Softimage, but I don't remember this right now.
docs: http://www.autohotkey.com/docs/
I have startup.ahk file with everything in it in myDocuments folder and put a link to it in Windows Autostart, should be all that's needed. Inside the script, write something like
#q::Send !+{F9}
which sends ALT+Shift+F9 when Win+q is pressed. There's some syntax too which makes it active only in Softimage, but I don't remember this right now.
docs: http://www.autohotkey.com/docs/
softimage resources section updated Sep 26th 2026
-
Falam
Re: Windows Key in Softimage
If you can remember, I would appreciate it. If I hunt down 'active commands for Softimage" within the AHK docs I won't find, anythingrray wrote:Especially using a mouse where you can switch off the wheel's mechanical snapping ))
I have startup.ahk file with everything in it in myDocuments folder and put a link to it in Windows Autostart, should be all that's needed. Inside the script, write something like
#q::Send !+{F9}
which sends ALT+Shift+F9 when Win+q is pressed. There's some syntax too which makes it active only in Softimage, but I don't remember this right now.
docs: http://www.autohotkey.com/docs/
-
xsisupport
- Posts: 713
- Joined: 09 Jun 2009, 09:02
- Location: Montreal Canada
Re: Windows Key in Softimage
If you take a few seconds to look at the AutoHotKey FAQ, you'll find something that looks very much like the answer.
It took me 10 seconds to find it. I spent longer typing this message
It took me 10 seconds to find it. I spent longer typing this message
-
Falam
Re: Windows Key in Softimage
I'll look againxsisupport wrote:If you take a few seconds to look at the AutoHotKey FAQ, you'll find something that looks very much like the answer.
It took me 10 seconds to find it. I spent longer typing this message
-
rray
- Moderator
- Posts: 1810
- Joined: 26 Sep 2009, 13:51
- Location: Bonn, Germany
Re: Windows Key in Softimage
just remebered ;) .. top of script write
bottom:#NoEnv
#MaxHotkeysPerInterval 5000
#SingleInstance force
SetTitleMatchMode 2
SetBatchLines -1
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
and two scripts to move the timeline slider without logging...#IfWinActive, Softimage
^WheelUp::Send !+{Right}
^WheelDown::Send !+{Left}
You do not have the required permissions to view the files attached to this post.
softimage resources section updated Sep 26th 2026
-
Falam
Re: Windows Key in Softimage
Thanks, plans became messed up <sigh>rray wrote:just remebered ;) .. top of script writebottom:#NoEnv
#MaxHotkeysPerInterval 5000
#SingleInstance force
SetTitleMatchMode 2
SetBatchLines -1
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.and two scripts to move the timeline slider without logging...#IfWinActive, Softimage
^WheelUp::Send !+{Right}
^WheelDown::Send !+{Left}