Posted January 10, 2018
high rated
The most annoying thing for me about SimCity 3000 was not able to use the mouse wheel to zoom.
I made a simple autohotkey script that lets you zoom with the wheel.
1. Download autohotkey
2. create a new text file and paste this in it:
number = 1
WheelUp::
if WinActive("ahk_exe SC3U.exe")
{
if (number = 1)
{
send, 2
number = 2
}
else if (number = 2)
{
send, 3
number = 3
}
else if (number = 3)
{
send, 4
number = 4
}
else if (number = 4)
{
send, 5
number = 5
}
return
}
send, {WheelUp}
return
WheelDown::
if WinActive("ahk_exe SC3U.exe")
{
if (number = 2)
{
send, 1
number = 1
}
else if (number = 3)
{
send, 2
number = 2
}
else if (number = 4)
{
send, 3
number = 3
}
else if (number = 5)
{
send, 4
number = 4
}
return
}
send, {WheelDown}
return
then save it as simcity3000.ahk
double click the ahk file to make it become a green icon at the bottom right, this means it's active and you can zoom with the wheel in game
I made a simple autohotkey script that lets you zoom with the wheel.
1. Download autohotkey
2. create a new text file and paste this in it:
number = 1
WheelUp::
if WinActive("ahk_exe SC3U.exe")
{
if (number = 1)
{
send, 2
number = 2
}
else if (number = 2)
{
send, 3
number = 3
}
else if (number = 3)
{
send, 4
number = 4
}
else if (number = 4)
{
send, 5
number = 5
}
return
}
send, {WheelUp}
return
WheelDown::
if WinActive("ahk_exe SC3U.exe")
{
if (number = 2)
{
send, 1
number = 1
}
else if (number = 3)
{
send, 2
number = 2
}
else if (number = 4)
{
send, 3
number = 3
}
else if (number = 5)
{
send, 4
number = 4
}
return
}
send, {WheelDown}
return
then save it as simcity3000.ahk
double click the ahk file to make it become a green icon at the bottom right, this means it's active and you can zoom with the wheel in game