• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 04:21
CEST 10:21
KST 17:21
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Voting3[ASL20] Ro4 Preview: Descent6Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 6-12): Four star herO65.0.15 Patch Balance Hotfix (2025-10-8)68Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition325.0.15 Balance Patch Notes (Live version)119
StarCraft 2
General
5.0.15 Patch Balance Hotfix (2025-10-8) Maximizing Code Coverage for Reliable Software TL.net Map Contest #21: Voting Weekly Cups (Oct 6-12): Four star herO PartinG joins SteamerZone, returns to SC2 competition
Tourneys
Tenacious Turtle Tussle WardiTV Mondays SC2's Safe House 2 - October 18 & 19 Sparkling Tuna Cup - Weekly Open Tournament RSL Offline Finals Dates + Ticket Sales!
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
Brood War web app to calculate unit interactions BSL Season 21 Whose hotkey signature is this? BGH Auto Balance -> http://bghmmr.eu/ Any rep analyzer that shows resources situation?
Tourneys
[ASL20] Semifinal B [ASL20] Semifinal A [Megathread] Daily Proleagues [ASL20] Ro8 Day 4
Strategy
Current Meta BW - ajfirecracker Strategy & Training Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
Men's Fashion Thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Sex and weight loss US Politics Mega-thread
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1144 users

[H] Disable Ctrl+Esc

Forum Index > Tech Support
Post a Reply
waffling1
Profile Blog Joined May 2010
599 Posts
Last Edited: 2011-01-17 00:38:46
January 16 2011 20:25 GMT
#1
Can any computer savy person help me out disabling this shortcut keystroke that's a part of Windows?

Ctrl+ Esc acts as pressing the Windows button (no, disabling windows key in SC2 does not disable this Windows-innate keystroke), and it conflitcs with my new compact keyboard that has ~ and F1 close to Esc. I end up jumping out of my game when i intended to select all Idle workers.

I tried looking it up on google, but only someone who already knows how to code get it. I was hoping for an easier step-by-step instructions for this, thanks

Edit: SOLUTION:
+ Show Spoiler +

1) download AutoHotkey
http://www.autohotkey.com/docs/Hotkeys.htm (installed version or standalone version)
2) Openning the exe file will open a sample script. some instructions to get you understanding things is on there
3) edit the script and type in on any new line:
^Escape::return

^ stands for ctrl
return has it disabled
:: means pressing the stated keystroke on the left side results in the action that is on the right side of the double colons.

warnings/note:
+ Show Spoiler +

*If there is an error in the script, it won't let you open it. So you need to manually navigate to the file to edit it.
* that default/sample script located is in mydocuments. that is the script that will run by default when you double click autohotkey.exe file, or from your start menu. Changing the location of this default/sample file will result in failure.

* Further scripts can be made; use this table for the symbols for keys, as well as syntax and grammar.
http://www.autohotkey.com/docs/Hotkeys.htm
# represents start menu button
^ ctrl
! alt

combinations of these modifier keys can be in any order, as long as the non-modifier key comes directly after them without any space.
so
^!delete::return
means ctrl+alt+delete will disable its usual function.
BadWolf0
Profile Joined September 2010
United States300 Posts
January 16 2011 20:26 GMT
#2
theres an option under the "options menu" that says disable system shortcuts. is that not working?
All hail the Queen!!!
Torpedo.Vegas
Profile Blog Joined January 2011
United States1890 Posts
January 16 2011 20:27 GMT
#3
Yeah, whoever though putting that darn windows button smack dab in the middle of Alt and Ctrl really was not thinking about the plight of the competitive gamer.
MOOG
Profile Joined October 2010
United States188 Posts
January 16 2011 21:13 GMT
#4
Install autohotkey and in your autohotkey config have the entry
^Escape::return
this makes it so the control + esc combination does nothing. Caret represents the control modifier, and the :: is a remapping function.
May have to enclose escape in brackets, i'm not sure. I'm not in windows at the moment.

http://www.autohotkey.com/docs/Hotkeys.htm
To Do: 1. finish the rest of my practice league matches 2. win GSL
waffling1
Profile Blog Joined May 2010
599 Posts
Last Edited: 2011-01-16 22:22:45
January 16 2011 22:12 GMT
#5
On January 17 2011 06:13 MOOG wrote:
Install autohotkey and in your autohotkey config have the entry
^Escape::return
this makes it so the control + esc combination does nothing. Caret represents the control modifier, and the :: is a remapping function.
May have to enclose escape in brackets, i'm not sure. I'm not in windows at the moment.

http://www.autohotkey.com/docs/Hotkeys.htm


i got the zip version where you don't need to run the installer.

Can you tell me exactly which file to open and what to type in it? i don't get any of this implicit programming lingo.

like autohotkey.exe -> type:

^Escape::return

or somethig like that.

i run the exe file, but there's no window. i double click it again, but it says it's already running.
Kuzmorgo
Profile Joined May 2009
Hungary1058 Posts
Last Edited: 2011-01-16 22:29:57
January 16 2011 22:28 GMT
#6
On January 17 2011 07:12 waffling1 wrote:
Show nested quote +
On January 17 2011 06:13 MOOG wrote:
Install autohotkey and in your autohotkey config have the entry
^Escape::return
this makes it so the control + esc combination does nothing. Caret represents the control modifier, and the :: is a remapping function.
May have to enclose escape in brackets, i'm not sure. I'm not in windows at the moment.

http://www.autohotkey.com/docs/Hotkeys.htm


i got the zip version where you don't need to run the installer.

Can you tell me exactly which file to open and what to type in it? i don't get any of this implicit programming lingo.

like autohotkey.exe -> type:

^Escape::return

or somethig like that.

i run the exe file, but there's no window. i double click it again, but it says it's already running.


I think if you just make a text file in notepad, save as [whateverulike].ahk, it should work. In the file write (case-sensitive irrc):
Esc::Enter

Than double click the file. It works for me.
Alternatively, i completely removed the win-key from my keyboard, you could do that with the ESC-key aswell.

EDIT: oh sry, if you didnt install autohotkey, i guess you would have to manually assign windows to run the file with it, cause it wont recognize it.
Hope it helped
"No, whine not! Play, or play not! There is no whine."
MOOG
Profile Joined October 2010
United States188 Posts
January 16 2011 22:37 GMT
#7
when you start autohotkey by double clicking the program, autohotkey loads autohotkey.ahk in your homefolder/my documents.

If you used the installer, it would create autohotkey.ahk for you. if not, it might automatically create an example autohotkey.ahk in the right spot the first time you run the program.

I don't think you should make an .ahk [whateverulike].ahk. the default config file it always loads is autohotkey.ahk in your documents folder. you don't have to manually assign windows to run the the file if it is appropriately named and placed.

easy scripts like these aren't exactly programming lingo. I learned how to use autohotkey before I learned a little bit about programming. If there is any misunderstanding it is either poor instructions or poor comprehension. some people make some huge complicated scripts in autohotkey with loops and shit, and you can blame THAT on lingo
To Do: 1. finish the rest of my practice league matches 2. win GSL
waffling1
Profile Blog Joined May 2010
599 Posts
Last Edited: 2011-01-16 22:42:20
January 16 2011 22:39 GMT
#8
On January 17 2011 07:28 Kuzmorgo wrote:

I think if you just make a text file in notepad, save as [whateverulike].ahk, it should work. In the file write (case-sensitive irrc):
Esc::Enter

Than double click the file. It works for me.
Alternatively, i completely removed the win-key from my keyboard, you could do that with the ESC-key aswell.

EDIT: oh sry, if you didnt install autohotkey, i guess you would have to manually assign windows to run the file with it, cause it wont recognize it.
Hope it helped


k i get that u just make a notepad file, rename the suffix, and run it now.

Not installinng is not an issue, it's basically a "portable" version. As long as i double click it, and the script is running, it's all good. I can right click the tray icon and go to "edit script". so i figured out my first problem of where to code. now for the actual code.

The code of ^Escape::return is not working for me.

is return the thing that is used to have the keystroke do nothing?

@MOOG
yeah, i didn't know basic paradigms. namely, i didn't know where to go to script. now that's solved.

Perhaps you can get ctrl esc to become innert and then copy paste me the code? i'm fine with reverse engineerig and seeing patterns to learn the lingo.


MOOG
Profile Joined October 2010
United States188 Posts
Last Edited: 2011-01-16 22:47:24
January 16 2011 22:43 GMT
#9
Doesn't work? that's unfortunate. I don't have any other suggestions. Maybe someone better knows.

according to http://www.autohotkey.com/docs/Hotkeys.htm ,

A key or key-combination can be disabled for the entire system by having it do nothing. The following example disables the right-side Windows key:

RWin::return

edit
make sure you reload the autohotkey config file after every change. right cilck on the big h and reload.

did you try ^{Escape}::return ?or was it ^[Escape]::return? i forget, but sometimes special keys need to be enclosed in brackets. it doesn't hurt to try them both.
To Do: 1. finish the rest of my practice league matches 2. win GSL
waffling1
Profile Blog Joined May 2010
599 Posts
January 16 2011 22:46 GMT
#10
now i messed up the code, and when i try to run the exe file, it says there is an error, and that it will close, and i can't access the sample scrip to edit the problem.
MOOG
Profile Joined October 2010
United States188 Posts
Last Edited: 2011-01-16 23:05:26
January 16 2011 22:48 GMT
#11
you can always access the sample script by going to waffling1\my documents, right click on autohotkey.ahk, and click on open with, then open it with wordpad or notepad.

autohotkey checks your config file for faulty code and won't run if it detects some types of faults.

i can't do it for you because i'm running ubuntu right now and I need to stay in ubuntu, and autohotkey isn't for ubuntu.
To Do: 1. finish the rest of my practice league matches 2. win GSL
Kuzmorgo
Profile Joined May 2009
Hungary1058 Posts
January 16 2011 23:00 GMT
#12
On January 17 2011 07:39 waffling1 wrote:
Show nested quote +
On January 17 2011 07:28 Kuzmorgo wrote:

I think if you just make a text file in notepad, save as [whateverulike].ahk, it should work. In the file write (case-sensitive irrc):
Esc::Enter

Than double click the file. It works for me.
Alternatively, i completely removed the win-key from my keyboard, you could do that with the ESC-key aswell.

EDIT: oh sry, if you didnt install autohotkey, i guess you would have to manually assign windows to run the file with it, cause it wont recognize it.
Hope it helped


k i get that u just make a notepad file, rename the suffix, and run it now.

Not installinng is not an issue, it's basically a "portable" version. As long as i double click it, and the script is running, it's all good. I can right click the tray icon and go to "edit script". so i figured out my first problem of where to code. now for the actual code.

The code of ^Escape::return is not working for me.

is return the thing that is used to have the keystroke do nothing?

@MOOG
yeah, i didn't know basic paradigms. namely, i didn't know where to go to script. now that's solved.

Perhaps you can get ctrl esc to become innert and then copy paste me the code? i'm fine with reverse engineerig and seeing patterns to learn the lingo.






Nonono


The point is its not "return", its "Enter"!!!!
I tried it with return first, but it didnt work, then i thought, "well, it says enter on it, so i will give it a try", and it works with Enter!!
"No, whine not! Play, or play not! There is no whine."
waffling1
Profile Blog Joined May 2010
599 Posts
Last Edited: 2011-01-16 23:00:51
January 16 2011 23:00 GMT
#13
On January 17 2011 07:48 MOOG wrote:
you can always access the sample script by going to waffling1\my documents, right click on autohotkey.ahk, and click on open with, then open it with wordpad or notepad.

autohotkey checks your config file for faulty code and won't run if it detects some types of faults.


one more question. how would i set a script to run upon startup? draggingn to the startup on start menu doesnt seem to exactly do it.

i already have logitech setpoint , my mouse drive on startup, but when i navigate to the startup folder through folders (rather than the start button), it doesn't show up.

Also, i have Ccleaner, which has a startup tool, which allows you to disable certain things on that list, but getting something to be on that list in the first place is a mystery.
waffling1
Profile Blog Joined May 2010
599 Posts
Last Edited: 2011-01-17 00:29:46
January 16 2011 23:03 GMT
#14
On January 17 2011 08:00 Kuzmorgo wrote:
Show nested quote +
On January 17 2011 07:39 waffling1 wrote:
On January 17 2011 07:28 Kuzmorgo wrote:

I think if you just make a text file in notepad, save as [whateverulike].ahk, it should work. In the file write (case-sensitive irrc):
Esc::Enter

Than double click the file. It works for me.
Alternatively, i completely removed the win-key from my keyboard, you could do that with the ESC-key aswell.

EDIT: oh sry, if you didnt install autohotkey, i guess you would have to manually assign windows to run the file with it, cause it wont recognize it.
Hope it helped


k i get that u just make a notepad file, rename the suffix, and run it now.

Not installinng is not an issue, it's basically a "portable" version. As long as i double click it, and the script is running, it's all good. I can right click the tray icon and go to "edit script". so i figured out my first problem of where to code. now for the actual code.

The code of ^Escape::return is not working for me.

is return the thing that is used to have the keystroke do nothing?

@MOOG
yeah, i didn't know basic paradigms. namely, i didn't know where to go to script. now that's solved.

Perhaps you can get ctrl esc to become innert and then copy paste me the code? i'm fine with reverse engineerig and seeing patterns to learn the lingo.






Nonono


The point is its not "return", its "Enter"!!!!
I tried it with return first, but it didnt work, then i thought, "well, it says enter on it, so i will give it a try", and it works with Enter!!


what if i want it to do nothing at all?

funny, MOOG.
^Escape::return started to work now.. -_-


Thank you both So much
cwepahguy225
Profile Joined October 2014
United States1 Post
October 18 2014 17:03 GMT
#15
when I type, I cant use colons. Can someone give me a step by step explanation of how to get to the config.
Please log in or register to reply.
Live Events Refresh
Replay Cast
00:00
Patches' TLMC21 Bash #2
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 115
StarCraft: Brood War
Sea 2459
Barracks 649
actioN 371
Larva 256
PianO 215
BeSt 96
EffOrt 94
ToSsGirL 61
Bale 55
JulyZerg 48
[ Show more ]
Sharp 31
sorry 28
ajuk12(nOOB) 16
Hm[arnc] 15
Sacsri 15
NotJumperer 0
Dota 2
XcaliburYe0
League of Legends
JimRising 812
Counter-Strike
olofmeister2764
ScreaM1335
shoxiejesuss510
Stewie2K161
Other Games
summit1g7461
ceh9390
C9.Mang0383
Pyrionflax143
Tasteless113
NeuroSwarm28
Organizations
Counter-Strike
PGL6552
Other Games
gamesdonequick1191
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• OhrlRock 105
• LUISG 18
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift2054
• Jankos1574
• Lourlo1017
Upcoming Events
Afreeca Starleague
1h 39m
Soma vs Bisu
OSC
5h 39m
OSC
9h 39m
MaxPax vs Gerald
Solar vs Krystianer
PAPI vs Lemon
Ryung vs Moja
Nice vs NightPhoenix
Cham vs TBD
MaNa vs TriGGeR
PiGosaur Monday
15h 39m
OSC
1d 14h
The PondCast
2 days
OSC
2 days
Wardi Open
3 days
CranKy Ducklings
4 days
Safe House 2
4 days
[ Show More ]
Sparkling Tuna Cup
5 days
Safe House 2
5 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.