Natural Selection 2 Guide

How to disable ALT Tab and Windows Key with AutoKey for Natural Selection 2

How to disable ALT Tab and Windows Key with AutoKey

Overview

Here are the codes for AutoKey to disable ALT TAB and the Windows KeyYou can google it easily tbh, but it is also here now

How to disable ALT TAB

•1. Right-Click on your desktop.
•2. Find “New” in the menu.
•3. Click “AutoHotkey Script” inside the “New” menu.
•4. Give the script a new name. Note: It must end with a .ahk extension. Ex. MyScript.ahk
•5. Find the newly created file on your desktop and Right-Click it.
•6. Click “Edit Script”.
•7. A window should have popped up, probably Notepad. If so, SUCCESS!

Copy paste the code below (I did it in two separates files, why not ?)

#ifWinActive Natural Selection 2
LAlt & Tab::Send {Tab Down}
LAlt & Tab Up::Send {Tab Up}

#ifWinActive Natural Selection 2
LWin::Send {Tab Down}
LWin Up::Send {Tab Up}

——The code for Windows Key

#ifWinActive Natural Selection 2
LWin::Send {Tab Down}
LWin Up::Send {Tab Up}

•8. Save the File.
•9. Double-Click the file/icon in the desktop to run it. Open notepad or (anything you can type in) and press Ctrl and J.
•10. Hip Hip Hooray! Your first script is done. Go get some reward snacks then return to reading the rest of this tutorial.

(Tutorial taken from the help file of the software)
Work fine for me on Windows 7 64 bits

If you want to add improvments do not hesitate

[Update 2020]
Work fine also on Windows 10

You can also do it for all your games if needed.
Copy/Paste the code and replace “Natural Selection 2” by the name of the .exe application file of your game.
You can find the exact name in the task manager by pressing CTRL+ALT +SUPP, or by typing “task manager” in the search bar, or in your game directory folder.

SteamSolo.com