Steam telepítése
belépés
|
nyelv
简体中文 (egyszerűsített kínai)
繁體中文 (hagyományos kínai)
日本語 (japán)
한국어 (koreai)
ไทย (thai)
Български (bolgár)
Čeština (cseh)
Dansk (dán)
Deutsch (német)
English (angol)
Español - España (spanyolországi spanyol)
Español - Latinoamérica (latin-amerikai spanyol)
Ελληνικά (görög)
Français (francia)
Italiano (olasz)
Bahasa Indonesia (indonéz)
Nederlands (holland)
Norsk (norvég)
Polski (lengyel)
Português (portugáliai portugál)
Português - Brasil (brazíliai portugál)
Română (román)
Русский (orosz)
Suomi (finn)
Svenska (svéd)
Türkçe (török)
Tiếng Việt (vietnámi)
Українська (ukrán)
Fordítási probléma jelentése
I haven't used AutoHotKey before but googling it looks like you could do something like "send {WheelDown 1}". It probably wouldn't be too hard for me to for example make "pg up" and "pg dn" do the scrolling too but I'm not 100% sure I understand the problem. Eventually I'm hoping to allow it all to me custom mapped (which Steam wants me to do as well).
I grew up using the arrow keys, and never used WASD for scrolling in games. So I find WASD very uncomfortable.
I have a script set up with AutoHotKey running, where arrow keys do the same thing as WASD. But, for some reason if I hold down an arrow key for a few seconds, the scrolling gets stuck going in one direction.
I'm sure it's something to do with the way I have the script set up, as I'm not an AutoHotKey expert.
If you do ever get a chance to implement it, one way I was thinking is to have a toggle in the Options which overwrites the arrow keys to do what WASD does.
I typically use the middle mouse button to rotate the screen, and wouldn't be missing out on the lost arrow key function.
I understand if you don't feel it needs to be implemented, because, as I said, I'm pretty much a black sheep as most people are comfortable with WASD.
Here's the script I run in AutoHotKey, for my personal use, just in case you wanted to see it hehe:
----------------
#UseHook
SetKeyDelay 10000
up::w
down::s
left::a
right::d
rcontrol::r
----------------
Maybe also try
#UseHook
SetKeyDelay 10
up::Send, w
down::Send, s
left::Send, a
right::Send, d
rcontrol::Send, r