How can I disable Alt+Space native hotkey in Windows 10? The Next CEO of Stack OverflowHow do...
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
Where do students learn to solve polynomial equations these days?
How to prove a simple equation?
How I can get glyphs from a fraktur font and use them as identifiers?
How many extra stops do monopods offer for tele photographs?
The past simple of "gaslight" – "gaslighted" or "gaslit"?
What steps are necessary to read a Modern SSD in Medieval Europe?
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
Prepend last line of stdin to entire stdin
Does increasing your ability score affect your main stat?
Is it possible to replace duplicates of a character with one character using tr
Why isn't the Mueller report being released completely and unredacted?
Why does the flight controls check come before arming the autobrake on the A320?
Poetry, calligrams and TikZ/PStricks challenge
How to avoid supervisors with prejudiced views?
Calculator final project in Python
WOW air has ceased operation, can I get my tickets refunded?
Unclear about dynamic binding
A small doubt about the dominated convergence theorem
TikZ: How to reverse arrow direction without switching start/end point?
Can MTA send mail via a relay without being told so?
Is it ever safe to open a suspicious HTML file (e.g. email attachment)?
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Break Away Valves for Launch
How can I disable Alt+Space native hotkey in Windows 10?
The Next CEO of Stack OverflowHow do I paste the Windows clipboard into my PuTTY session, using only the keyboard?Windows 7 locked on admin account which doesn't have a password enabledDisable Windows + Space hotkey in Windows 8Alt+Shift (keyboard layout hotkey) has stopped working in Windows 10What is alt-tab'ing or Windows key for meDirect shortcut for Windows Maximize/Minimize/Restore window?I can't access my desktop (Windows 10)Autohotkey & VirtualBox no longer get global hotkeys - How to track culprit?How to keep Alt+Shift from inadvertently opening the menu bar of the current app on Windows (or how to make ALT purely a modifier key)Autohotkey: Use Space + Alt + q to trigger actions
Windows 10 has Alt+Space
as a default hotkey for opening the menu bar of a windows with the choices of Minimizing/Maximizing it.
I'm using Kdenlive and Kdenlive wants to use Alt+Space
as a hotkey for playing a video in a loop. Unfortuntely, when I press the hotkey Windows 10 processes the hotkey without the information getting passed to the app.
Given that I don't need the native hotkey, is there a way I can remove it?
windows windows-10 keyboard-shortcuts hotkeys
add a comment |
Windows 10 has Alt+Space
as a default hotkey for opening the menu bar of a windows with the choices of Minimizing/Maximizing it.
I'm using Kdenlive and Kdenlive wants to use Alt+Space
as a hotkey for playing a video in a loop. Unfortuntely, when I press the hotkey Windows 10 processes the hotkey without the information getting passed to the app.
Given that I don't need the native hotkey, is there a way I can remove it?
windows windows-10 keyboard-shortcuts hotkeys
1
Why not change thekdenlive
hot-key underSettings
->Configure Shortcuts...
? This seems a better idea than changing a basic system setting for the sake of a single application. You seem to be asking an XY problem.
– AFH
May 27 '18 at 13:46
@AFH I don't like the general system setting in the first place.
– Christian
May 27 '18 at 15:03
add a comment |
Windows 10 has Alt+Space
as a default hotkey for opening the menu bar of a windows with the choices of Minimizing/Maximizing it.
I'm using Kdenlive and Kdenlive wants to use Alt+Space
as a hotkey for playing a video in a loop. Unfortuntely, when I press the hotkey Windows 10 processes the hotkey without the information getting passed to the app.
Given that I don't need the native hotkey, is there a way I can remove it?
windows windows-10 keyboard-shortcuts hotkeys
Windows 10 has Alt+Space
as a default hotkey for opening the menu bar of a windows with the choices of Minimizing/Maximizing it.
I'm using Kdenlive and Kdenlive wants to use Alt+Space
as a hotkey for playing a video in a loop. Unfortuntely, when I press the hotkey Windows 10 processes the hotkey without the information getting passed to the app.
Given that I don't need the native hotkey, is there a way I can remove it?
windows windows-10 keyboard-shortcuts hotkeys
windows windows-10 keyboard-shortcuts hotkeys
edited May 27 '18 at 15:03
Cadmos
15212
15212
asked May 27 '18 at 12:47
ChristianChristian
1,10812240
1,10812240
1
Why not change thekdenlive
hot-key underSettings
->Configure Shortcuts...
? This seems a better idea than changing a basic system setting for the sake of a single application. You seem to be asking an XY problem.
– AFH
May 27 '18 at 13:46
@AFH I don't like the general system setting in the first place.
– Christian
May 27 '18 at 15:03
add a comment |
1
Why not change thekdenlive
hot-key underSettings
->Configure Shortcuts...
? This seems a better idea than changing a basic system setting for the sake of a single application. You seem to be asking an XY problem.
– AFH
May 27 '18 at 13:46
@AFH I don't like the general system setting in the first place.
– Christian
May 27 '18 at 15:03
1
1
Why not change the
kdenlive
hot-key under Settings
-> Configure Shortcuts...
? This seems a better idea than changing a basic system setting for the sake of a single application. You seem to be asking an XY problem.– AFH
May 27 '18 at 13:46
Why not change the
kdenlive
hot-key under Settings
-> Configure Shortcuts...
? This seems a better idea than changing a basic system setting for the sake of a single application. You seem to be asking an XY problem.– AFH
May 27 '18 at 13:46
@AFH I don't like the general system setting in the first place.
– Christian
May 27 '18 at 15:03
@AFH I don't like the general system setting in the first place.
– Christian
May 27 '18 at 15:03
add a comment |
3 Answers
3
active
oldest
votes
Alt+Space hotkey is taken by Windows system by default.
However with the help of a 3rd party solution you can override this setting and take control over Windows by not letting them to steal the hotkey combination.
- Download Autohotkey and install it.
Create a new file in Notepad or your default editor and insert these 2 lines:
; it allows to make a rule which is applied only when windows contains the given title
SetTitleMatchMode, 2
; obviously below you write the title that is contained in your program's window
#IfWinActive, Kdenlive
!Space::Return ; ! stands for Alt key
Save it somewhere easy to access it as Whatever.ahk (and not as .txt)
Double click on it (or Run as Administrator) and it will trigger AutoHotKey to execute it and have it loaded. Now the Alt+Space hotkey does not call the Windows default actionwhen is hit in a window with the given title (Kdenlive).
I suggest to put it on your startup programs for not having to execute it manually each time you reboot your system.
You can find more information on how to program hotkeys in AutoHotKey by scripting on https://autohotkey.com/docs/Hotkeys.htm
This prevents windows from engaging in it's behavior but it doesn't let kdenlive process the hotkey event.
– Christian
May 27 '18 at 15:00
After disabling it, try to hit the following key sequence in your application ->Space + Alt + Space
. However did you indeed checked ifAlt+Space
is still working in your application after applying AutoHotKey solution?
– Cadmos
May 27 '18 at 15:13
Yes, I did check and hitting the key sequence also does nothing.
– Christian
May 27 '18 at 16:03
As I mentioned at the end of my answer, there is a link where you can find more information on how to script your key based on your preferences and rules. Anyway I edited my answer with new script code. Make sure you reload the your AHK file by right click or close it and open it again.
– Cadmos
May 27 '18 at 17:08
1
You probably did not use it because in my Windows 10 is tested right now andAlt+Space
changes behavior only to Kdenlive (which happens to run as well) and it remains as Windows default function to all the other ones. Do you want me to upload a YouTube video in case you need it visualized ? There is no trouble for me if it helps you.
– Cadmos
May 27 '18 at 17:46
|
show 3 more comments
this worked for me in auto hot key.
!space::Send {""} ;
it disabled the pesky combination that made want to make bill gates choke with a piece of bread.
New contributor
add a comment |
I remembered that Autohotkey can map keys to F13 till F24 and used:
!Space::
Send {F13}
return
To get Autohotkey to press F13 and then set F13 to be the key that's used by Kdenlive for this purpose via Settings -> Configure Shortcuts
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1326361%2fhow-can-i-disable-altspace-native-hotkey-in-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Alt+Space hotkey is taken by Windows system by default.
However with the help of a 3rd party solution you can override this setting and take control over Windows by not letting them to steal the hotkey combination.
- Download Autohotkey and install it.
Create a new file in Notepad or your default editor and insert these 2 lines:
; it allows to make a rule which is applied only when windows contains the given title
SetTitleMatchMode, 2
; obviously below you write the title that is contained in your program's window
#IfWinActive, Kdenlive
!Space::Return ; ! stands for Alt key
Save it somewhere easy to access it as Whatever.ahk (and not as .txt)
Double click on it (or Run as Administrator) and it will trigger AutoHotKey to execute it and have it loaded. Now the Alt+Space hotkey does not call the Windows default actionwhen is hit in a window with the given title (Kdenlive).
I suggest to put it on your startup programs for not having to execute it manually each time you reboot your system.
You can find more information on how to program hotkeys in AutoHotKey by scripting on https://autohotkey.com/docs/Hotkeys.htm
This prevents windows from engaging in it's behavior but it doesn't let kdenlive process the hotkey event.
– Christian
May 27 '18 at 15:00
After disabling it, try to hit the following key sequence in your application ->Space + Alt + Space
. However did you indeed checked ifAlt+Space
is still working in your application after applying AutoHotKey solution?
– Cadmos
May 27 '18 at 15:13
Yes, I did check and hitting the key sequence also does nothing.
– Christian
May 27 '18 at 16:03
As I mentioned at the end of my answer, there is a link where you can find more information on how to script your key based on your preferences and rules. Anyway I edited my answer with new script code. Make sure you reload the your AHK file by right click or close it and open it again.
– Cadmos
May 27 '18 at 17:08
1
You probably did not use it because in my Windows 10 is tested right now andAlt+Space
changes behavior only to Kdenlive (which happens to run as well) and it remains as Windows default function to all the other ones. Do you want me to upload a YouTube video in case you need it visualized ? There is no trouble for me if it helps you.
– Cadmos
May 27 '18 at 17:46
|
show 3 more comments
Alt+Space hotkey is taken by Windows system by default.
However with the help of a 3rd party solution you can override this setting and take control over Windows by not letting them to steal the hotkey combination.
- Download Autohotkey and install it.
Create a new file in Notepad or your default editor and insert these 2 lines:
; it allows to make a rule which is applied only when windows contains the given title
SetTitleMatchMode, 2
; obviously below you write the title that is contained in your program's window
#IfWinActive, Kdenlive
!Space::Return ; ! stands for Alt key
Save it somewhere easy to access it as Whatever.ahk (and not as .txt)
Double click on it (or Run as Administrator) and it will trigger AutoHotKey to execute it and have it loaded. Now the Alt+Space hotkey does not call the Windows default actionwhen is hit in a window with the given title (Kdenlive).
I suggest to put it on your startup programs for not having to execute it manually each time you reboot your system.
You can find more information on how to program hotkeys in AutoHotKey by scripting on https://autohotkey.com/docs/Hotkeys.htm
This prevents windows from engaging in it's behavior but it doesn't let kdenlive process the hotkey event.
– Christian
May 27 '18 at 15:00
After disabling it, try to hit the following key sequence in your application ->Space + Alt + Space
. However did you indeed checked ifAlt+Space
is still working in your application after applying AutoHotKey solution?
– Cadmos
May 27 '18 at 15:13
Yes, I did check and hitting the key sequence also does nothing.
– Christian
May 27 '18 at 16:03
As I mentioned at the end of my answer, there is a link where you can find more information on how to script your key based on your preferences and rules. Anyway I edited my answer with new script code. Make sure you reload the your AHK file by right click or close it and open it again.
– Cadmos
May 27 '18 at 17:08
1
You probably did not use it because in my Windows 10 is tested right now andAlt+Space
changes behavior only to Kdenlive (which happens to run as well) and it remains as Windows default function to all the other ones. Do you want me to upload a YouTube video in case you need it visualized ? There is no trouble for me if it helps you.
– Cadmos
May 27 '18 at 17:46
|
show 3 more comments
Alt+Space hotkey is taken by Windows system by default.
However with the help of a 3rd party solution you can override this setting and take control over Windows by not letting them to steal the hotkey combination.
- Download Autohotkey and install it.
Create a new file in Notepad or your default editor and insert these 2 lines:
; it allows to make a rule which is applied only when windows contains the given title
SetTitleMatchMode, 2
; obviously below you write the title that is contained in your program's window
#IfWinActive, Kdenlive
!Space::Return ; ! stands for Alt key
Save it somewhere easy to access it as Whatever.ahk (and not as .txt)
Double click on it (or Run as Administrator) and it will trigger AutoHotKey to execute it and have it loaded. Now the Alt+Space hotkey does not call the Windows default actionwhen is hit in a window with the given title (Kdenlive).
I suggest to put it on your startup programs for not having to execute it manually each time you reboot your system.
You can find more information on how to program hotkeys in AutoHotKey by scripting on https://autohotkey.com/docs/Hotkeys.htm
Alt+Space hotkey is taken by Windows system by default.
However with the help of a 3rd party solution you can override this setting and take control over Windows by not letting them to steal the hotkey combination.
- Download Autohotkey and install it.
Create a new file in Notepad or your default editor and insert these 2 lines:
; it allows to make a rule which is applied only when windows contains the given title
SetTitleMatchMode, 2
; obviously below you write the title that is contained in your program's window
#IfWinActive, Kdenlive
!Space::Return ; ! stands for Alt key
Save it somewhere easy to access it as Whatever.ahk (and not as .txt)
Double click on it (or Run as Administrator) and it will trigger AutoHotKey to execute it and have it loaded. Now the Alt+Space hotkey does not call the Windows default actionwhen is hit in a window with the given title (Kdenlive).
I suggest to put it on your startup programs for not having to execute it manually each time you reboot your system.
You can find more information on how to program hotkeys in AutoHotKey by scripting on https://autohotkey.com/docs/Hotkeys.htm
edited May 27 '18 at 17:33
answered May 27 '18 at 13:10
CadmosCadmos
15212
15212
This prevents windows from engaging in it's behavior but it doesn't let kdenlive process the hotkey event.
– Christian
May 27 '18 at 15:00
After disabling it, try to hit the following key sequence in your application ->Space + Alt + Space
. However did you indeed checked ifAlt+Space
is still working in your application after applying AutoHotKey solution?
– Cadmos
May 27 '18 at 15:13
Yes, I did check and hitting the key sequence also does nothing.
– Christian
May 27 '18 at 16:03
As I mentioned at the end of my answer, there is a link where you can find more information on how to script your key based on your preferences and rules. Anyway I edited my answer with new script code. Make sure you reload the your AHK file by right click or close it and open it again.
– Cadmos
May 27 '18 at 17:08
1
You probably did not use it because in my Windows 10 is tested right now andAlt+Space
changes behavior only to Kdenlive (which happens to run as well) and it remains as Windows default function to all the other ones. Do you want me to upload a YouTube video in case you need it visualized ? There is no trouble for me if it helps you.
– Cadmos
May 27 '18 at 17:46
|
show 3 more comments
This prevents windows from engaging in it's behavior but it doesn't let kdenlive process the hotkey event.
– Christian
May 27 '18 at 15:00
After disabling it, try to hit the following key sequence in your application ->Space + Alt + Space
. However did you indeed checked ifAlt+Space
is still working in your application after applying AutoHotKey solution?
– Cadmos
May 27 '18 at 15:13
Yes, I did check and hitting the key sequence also does nothing.
– Christian
May 27 '18 at 16:03
As I mentioned at the end of my answer, there is a link where you can find more information on how to script your key based on your preferences and rules. Anyway I edited my answer with new script code. Make sure you reload the your AHK file by right click or close it and open it again.
– Cadmos
May 27 '18 at 17:08
1
You probably did not use it because in my Windows 10 is tested right now andAlt+Space
changes behavior only to Kdenlive (which happens to run as well) and it remains as Windows default function to all the other ones. Do you want me to upload a YouTube video in case you need it visualized ? There is no trouble for me if it helps you.
– Cadmos
May 27 '18 at 17:46
This prevents windows from engaging in it's behavior but it doesn't let kdenlive process the hotkey event.
– Christian
May 27 '18 at 15:00
This prevents windows from engaging in it's behavior but it doesn't let kdenlive process the hotkey event.
– Christian
May 27 '18 at 15:00
After disabling it, try to hit the following key sequence in your application ->
Space + Alt + Space
. However did you indeed checked if Alt+Space
is still working in your application after applying AutoHotKey solution?– Cadmos
May 27 '18 at 15:13
After disabling it, try to hit the following key sequence in your application ->
Space + Alt + Space
. However did you indeed checked if Alt+Space
is still working in your application after applying AutoHotKey solution?– Cadmos
May 27 '18 at 15:13
Yes, I did check and hitting the key sequence also does nothing.
– Christian
May 27 '18 at 16:03
Yes, I did check and hitting the key sequence also does nothing.
– Christian
May 27 '18 at 16:03
As I mentioned at the end of my answer, there is a link where you can find more information on how to script your key based on your preferences and rules. Anyway I edited my answer with new script code. Make sure you reload the your AHK file by right click or close it and open it again.
– Cadmos
May 27 '18 at 17:08
As I mentioned at the end of my answer, there is a link where you can find more information on how to script your key based on your preferences and rules. Anyway I edited my answer with new script code. Make sure you reload the your AHK file by right click or close it and open it again.
– Cadmos
May 27 '18 at 17:08
1
1
You probably did not use it because in my Windows 10 is tested right now and
Alt+Space
changes behavior only to Kdenlive (which happens to run as well) and it remains as Windows default function to all the other ones. Do you want me to upload a YouTube video in case you need it visualized ? There is no trouble for me if it helps you.– Cadmos
May 27 '18 at 17:46
You probably did not use it because in my Windows 10 is tested right now and
Alt+Space
changes behavior only to Kdenlive (which happens to run as well) and it remains as Windows default function to all the other ones. Do you want me to upload a YouTube video in case you need it visualized ? There is no trouble for me if it helps you.– Cadmos
May 27 '18 at 17:46
|
show 3 more comments
this worked for me in auto hot key.
!space::Send {""} ;
it disabled the pesky combination that made want to make bill gates choke with a piece of bread.
New contributor
add a comment |
this worked for me in auto hot key.
!space::Send {""} ;
it disabled the pesky combination that made want to make bill gates choke with a piece of bread.
New contributor
add a comment |
this worked for me in auto hot key.
!space::Send {""} ;
it disabled the pesky combination that made want to make bill gates choke with a piece of bread.
New contributor
this worked for me in auto hot key.
!space::Send {""} ;
it disabled the pesky combination that made want to make bill gates choke with a piece of bread.
New contributor
New contributor
answered 7 mins ago
NekoNekoNekoNeko
1
1
New contributor
New contributor
add a comment |
add a comment |
I remembered that Autohotkey can map keys to F13 till F24 and used:
!Space::
Send {F13}
return
To get Autohotkey to press F13 and then set F13 to be the key that's used by Kdenlive for this purpose via Settings -> Configure Shortcuts
.
add a comment |
I remembered that Autohotkey can map keys to F13 till F24 and used:
!Space::
Send {F13}
return
To get Autohotkey to press F13 and then set F13 to be the key that's used by Kdenlive for this purpose via Settings -> Configure Shortcuts
.
add a comment |
I remembered that Autohotkey can map keys to F13 till F24 and used:
!Space::
Send {F13}
return
To get Autohotkey to press F13 and then set F13 to be the key that's used by Kdenlive for this purpose via Settings -> Configure Shortcuts
.
I remembered that Autohotkey can map keys to F13 till F24 and used:
!Space::
Send {F13}
return
To get Autohotkey to press F13 and then set F13 to be the key that's used by Kdenlive for this purpose via Settings -> Configure Shortcuts
.
answered May 27 '18 at 17:50
ChristianChristian
1,10812240
1,10812240
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1326361%2fhow-can-i-disable-altspace-native-hotkey-in-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Why not change the
kdenlive
hot-key underSettings
->Configure Shortcuts...
? This seems a better idea than changing a basic system setting for the sake of a single application. You seem to be asking an XY problem.– AFH
May 27 '18 at 13:46
@AFH I don't like the general system setting in the first place.
– Christian
May 27 '18 at 15:03