Windows Key in Softimage

General questions and troubleshooting SOFTIMAGE©
Falam

Windows Key in Softimage

Post by Falam » 22 Jan 2013, 01:41

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 :)

User avatar
gaboraa
Posts: 317
Joined: 16 Apr 2010, 21:14

Re: Windows Key in Softimage

Post by gaboraa » 22 Jan 2013, 10:54

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.

User avatar
rray
Moderator
Posts: 1810
Joined: 26 Sep 2009, 13:51
Location: Bonn, Germany

Re: Windows Key in Softimage

Post by rray » 22 Jan 2013, 11:24

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
softimage resources section updated Sep 26th 2026

Falam

Re: Windows Key in Softimage

Post by Falam » 22 Jan 2013, 14:37

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
You can't map internal Softimage commands with AHK.

User avatar
rray
Moderator
Posts: 1810
Joined: 26 Sep 2009, 13:51
Location: Bonn, Germany

Re: Windows Key in Softimage

Post by rray » 22 Jan 2013, 15:07

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

Post by Falam » 22 Jan 2013, 15:11

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
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) :) Mouse wheel to scrub the timeline, not bad :)

User avatar
rray
Moderator
Posts: 1810
Joined: 26 Sep 2009, 13:51
Location: Bonn, Germany

Re: Windows Key in Softimage

Post by rray » 22 Jan 2013, 15:24

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/
softimage resources section updated Sep 26th 2026

Falam

Re: Windows Key in Softimage

Post by Falam » 23 Jan 2013, 14:26

rray 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/
If you can remember, I would appreciate it. If I hunt down 'active commands for Softimage" within the AHK docs I won't find, anything :)

User avatar
xsisupport
Posts: 713
Joined: 09 Jun 2009, 09:02
Location: Montreal Canada

Re: Windows Key in Softimage

Post by xsisupport » 23 Jan 2013, 14:45

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 :)
// Steve Blair
// "You're not a runner, you're just a guy who runs" -- my wife
//
// My Blogs: Arnold | Softimage

Falam

Re: Windows Key in Softimage

Post by Falam » 23 Jan 2013, 14:46

xsisupport 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 :)
I'll look again :) I'm just heading out the door so I rushed :)

User avatar
rray
Moderator
Posts: 1810
Joined: 26 Sep 2009, 13:51
Location: Bonn, Germany

Re: Windows Key in Softimage

Post by rray » 23 Jan 2013, 14:47

just remebered ;) .. top of script write
#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.
bottom:
#IfWinActive, Softimage

^WheelUp::Send !+{Right}
^WheelDown::Send !+{Left}
and two scripts to move the timeline slider without logging...
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

Post by Falam » 23 Jan 2013, 15:41

rray wrote:just remebered ;) .. top of script write
#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.
bottom:
#IfWinActive, Softimage

^WheelUp::Send !+{Right}
^WheelDown::Send !+{Left}
and two scripts to move the timeline slider without logging...
Thanks, plans became messed up <sigh>