Installera Steam
logga in
|
språk
简体中文 (förenklad kinesiska)
繁體中文 (traditionell kinesiska)
日本語 (japanska)
한국어 (koreanska)
ไทย (thailändska)
Български (bulgariska)
Čeština (tjeckiska)
Dansk (danska)
Deutsch (tyska)
English (engelska)
Español - España (Spanska - Spanien)
Español - Latinoamérica (Spanska - Latinamerika)
Ελληνικά (grekiska)
Français (franska)
Italiano (italienska)
Bahasa Indonesia (indonesiska)
Magyar (ungerska)
Nederlands (nederländska)
Norsk (norska)
Polski (polska)
Português (Portugisiska – Portugal)
Português - Brasil (Portugisiska - Brasilien)
Română (rumänska)
Русский (ryska)
Suomi (finska)
Türkçe (turkiska)
Tiếng Việt (vietnamesiska)
Українська (Ukrainska)
Rapportera problem med översättningen
If you need more than that might I suggest AutoHotKey to map the escape key to your mouse:
Key list names can be found here: https://autohotkey.com/docs/KeyList.htm
You can also set hotkeys to only one window by putting it inside a block like this:
#IfWinActive, ahk_exe midboss.exe
{
MButton::Escape
}
https://www.autohotkey.com/docs/v1/KeyList.htm#mouse-general
Then, replace the "MButton" in the script above with another button from the list.
The extra buttons (back/forward) are usually "XButton1" and "XButton2", so you'd have "XButton1::Escape" etc.