28 Jul 2019 at 00:00 #1 willhub willhub Caporegime Joined 3 Jan 2006 Posts 25,277 Location Chadderton, Oldham Anyway to remap delete to a combo such as Alt + - ?
2 Aug 2019 at 06:52 #2 AHarvey AHarvey Soldato Joined 6 Mar 2008 Posts 10,085 Location Stoke area willhub said: Anyway to remap delete to a combo such as Alt + - ? Click to expand... You can do key remapping with Autohotkey: https://www.autohotkey.com/docs/misc/Remap.htm
willhub said: Anyway to remap delete to a combo such as Alt + - ? Click to expand... You can do key remapping with Autohotkey: https://www.autohotkey.com/docs/misc/Remap.htm
2 Aug 2019 at 09:00 #3 willhub willhub Caporegime OP Joined 3 Jan 2006 Posts 25,277 Location Chadderton, Oldham Does it do remap to multi key?
2 Aug 2019 at 11:17 #4 AHarvey AHarvey Soldato Joined 6 Mar 2008 Posts 10,085 Location Stoke area willhub said: Does it do remap to multi key? Click to expand... Example off the link: CODE: ^x::^c Makes Ctrl+X produce Ctrl+C. so you'd have something like del::!key (! = Alt) List of keys here https://www.autohotkey.com/docs/KeyList.htm It's a great bit of software and I've barely touched the surface of it, mainly use it for basic text replacement or macro work. You can install Autohotkey and Sciite for Autohotkey. Create a new page and save as a .ahk file. Enter the text and you can add it to the startup so it starts on launch, then each time your pc starts the script will start and sit in the icon tray
willhub said: Does it do remap to multi key? Click to expand... Example off the link: CODE: ^x::^c Makes Ctrl+X produce Ctrl+C. so you'd have something like del::!key (! = Alt) List of keys here https://www.autohotkey.com/docs/KeyList.htm It's a great bit of software and I've barely touched the surface of it, mainly use it for basic text replacement or macro work. You can install Autohotkey and Sciite for Autohotkey. Create a new page and save as a .ahk file. Enter the text and you can add it to the startup so it starts on launch, then each time your pc starts the script will start and sit in the icon tray
29 Aug 2019 at 00:05 #5 soulhunter123 soulhunter123 Associate Joined 17 Nov 2007 Posts 107 Autohotkey script to do what you want: Code: !-:: Send {Delete} return Save it as whatever.ahk and run it or use AHK2EXE to convert it to a standalone binary.
Autohotkey script to do what you want: Code: !-:: Send {Delete} return Save it as whatever.ahk and run it or use AHK2EXE to convert it to a standalone binary.