Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The problem I am having is that the changes are made fine in a windows box such as explorer or firefox. The page up and page down keys scroll the windows just fine, but when i switch over to stellaris it does nothing. I have tried a few diff scripts and they both worked just fine in windows. (ver 10) but no luck in game..
apparently you don't have this problem which is promising because I was thinking ahk just didn't work in stellaris.
any help greatly appreciated.
Ok try this. It maps Z and X to scroll. To make it faster or slower, change the sleep number.
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
#IfWinActive, ahk_exe stellaris.exe
$Z::
while (getkeystate("Z", "P"))
{
click wheelup
sleep, 150
}
$X::
while (getkeystate("X", "P"))
{
click wheeldown
sleep, 150
}
#IfWinActive
PgUp::WheelUp
PgDn::WheelDown
I don't remember the last time anyone needed the Page keys for anything while playing stellaris. Of course you'll need to run it when you play. But then you won't have to deal with having it run elsewhere.
True, but when I was testing it I found an auto-repeat was nicer to use.
is a great thing to have and learn to use.