ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Main Area and Open Discussion > General Software Discussion

Create Shortcut Icons for Keyboard Shortcuts

(1/4) > >>

Nzyme:
Hi, is there a program that allows users to assign keyboard shortcuts and save those as icons on the desktop?
 
For example, pressing Alt + F4 shows the window that allows the user to shutdown, restart, etc. Now I would like this shortcut to be created as a icon on my desktop so when I click that icon, this same window should show up.
 
Thanks!

Ath:
That's quite easy, but a step-by-step guide with pictures is the easiest, I guess: http://www.wikihow.com/Make-a-Shutdown-Shortcut-in-Windows

It does sound a little bit backward though... :huh:

MilesAhead:
If you actually want to send the key sequence as if you keyed it while the desktop was the active window(has the keyboard focus)  you could script in AHK to just send the keys.  To send Alt + F4 in AHK is
Send !{F4}

So an AHK program to set focus to desktop then send Alt + F4 might look like this


--- ---; SendAltF4.ahk
; make Desktop active then
; send the keys
Sendmode Input
WinActivate ahk_class Progman
Send,!{F4}

Then just follow the same procedure to create a shortcut for the script as in the tutorial linked by Ath.  Or you can programatically create them using AHK's FileCreateShortcut command to create the .lnk files on the desktop.

Note:  To use the mini-scripts without AHK installed on the machine you would compile them to exe.  They might make fun novelty programs.  :)


Nzyme:
Thanks MilesAhead! I will test this and let you know if this works.

Nzyme:
Lovely! Works just how I need it.  :up: I have also compiled it to get a executable file. Now figuring out a way to change the icon from the default letter "H"  :-\

Navigation

[0] Message Index

[#] Next page

Go to full version