vote up 1 vote down star

With all of the new keyboard shortcuts added to Windows 7 I was wondering if a shortcut had been added to change the Desktop Background when the theme was setup to work as a slide show. I want to execute the Next desktop background command which a user is prompted for when right clicking a desktop that has been setup for a slide show.

flag

2 Answers

vote up 6 vote down check

Not that I know, but it can be fixed with an AutoHotkey script. For instance, this will use Win+n to go to the next desktop background:

#n::                             ; use the Windows+n hotkey
WinActivate, ahk_class Progman   ; activate the Desktop
MouseGetPos, xpos, ypos          ; get current mouse position
Click 0,0                        ; click in the corner of the desktop, to unselect any selected icon
Send +{F10}                      ; send Shift+F10, the shortcut for right-click
Send n                           ; send "n", the key for "next desktop background"
Click %xpos%, %ypos%, 0          ; put the mouse back at its previous position
return                           ; done!

The "n" in Send n is only valid for an English Windows 7 (Next desktop background). You'll have to change it if your Windows 7 is not in English to match the underlined key.

link|flag
+1 for AutoHotKey -- an excellent way to go. – Andrew Flanagan Nov 17 at 22:09
Too bad Microsoft didn't add a shortcut out of the box but I am happy you turned me onto AuthoHotKey. – ahsteele Nov 18 at 5:38
Unrelated to this thread what's the markdown you used for hte Win + n to make it look like keys? – ahsteele Nov 18 at 5:40
<kbd> </kbd> :-) – Snark Nov 18 at 6:12
I was not a believer at first. Each day now I'm more convinced that there is always a way with autohotkey. – D Connors Nov 21 at 14:05
vote up 0 vote down

I think this only works if you have your desktop icons showing. If you don't, Shift-F10 doesn't bring up the right click menu.

Edit: Well, I didn't install AutoHotKey, but someone at www.technixupdate.com/keyboard-shortcut-or-hotkey-to-switch-to-next-windows-7-desktop-wallpaper/ compiled it and it works with or without desktop icons showing. I just thought it wouldn't work as when I have my icons hid, the "Application" key and Shift-F10 both do not work. So, don't listen to me, it will probably work...

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.