Page 1 of 1

How to make more hotkey shortcuts

Posted: 03 Dec 2022, 23:46
by Topsport
Hi, i'm quite new with Autohotkey. I have always loved hotkey combinations to shortcuts to different programs and scripts I used many times a day. But as you know CTRL ALT WIN and letters or numeric including some Pause Break keys are only combinations allowed (in Windows OS).

I need more hotkeys. Anyone know a clever way to get more recent used programs/scripts :?: Maybe a Autohotkey script to show a shortcut menu to other scripts? I'm I overthinking perhaps :eh:

Re: How to make more hotkey shortcuts

Posted: 04 Dec 2022, 02:54
by Rohwedder
Hallo,
perhaps: [Class] LongHotkeys (a & b & c & ...)
Have you already used Return key combinations:

Code: Select all

Return & 1::SoundBeep, 1000, 20
Return & 2::SoundBeep, 2000, 20
Return & 3::SoundBeep, 3000, 20
Return::Return
~Return Up::SendInput,% (A_PriorHotkey = "Return")?"{Return}":""
What are allowed depends on your keyboard layout. For me, for example, ä & ü:: is allowed.

Re: How to make more hotkey shortcuts

Posted: 04 Dec 2022, 07:53
by Scr1pter
@Topsport :
What are your input devices?
(Keyboard and mouse model)

Cheers

Re: How to make more hotkey shortcuts

Posted: 05 Dec 2022, 04:14
by Topsport
Hi, i think i will leverage another tool called PuloversMacroCreator to archive more automations i want.

Re: How to make more hotkey shortcuts

Posted: 05 Dec 2022, 04:31
by Rohwedder
(Too bad, again someone who thinks that he does not want to think.)

Re: How to make more hotkey shortcuts

Posted: 05 Dec 2022, 05:41
by Scr1pter
@Topsport

Well, easier would be to use programmable keys and buttons like Logitech G Keys.

But apparently you found another solution, so, good luck :)

Cheers

Re: How to make more hotkey shortcuts

Posted: 09 Dec 2022, 00:12
by Topsport
Thank you for that idea. But unfortunately most of the time i'm working just on a notebook keyboard for easy travel between locations and not carrying around any extra accessories.

Re: How to make more hotkey shortcuts

Posted: 09 Dec 2022, 22:01
by Scr1pter
If it is a touchscreen laptop, you can activate functions on your screen.

I have this on my Windows tablet.
5 Fingers on screen activates a big screen with functions.
No keys or buttons needed.

Cheers