바탕 화면 배경을 변경하는 Windows 7 키보드 단축키가 있습니까? 테마가 슬라이드 쇼로

모든 새로운 키보드 단축키 가 Windows 7에 추가되면서 테마가 슬라이드 쇼로 작동하도록 설정되었을 때 바탕 화면 배경을 변경하기 위해 단축키가 추가되었는지 궁금했습니다.

Next desktop background슬라이드 쇼를 위해 설정된 바탕 화면을 마우스 오른쪽 단추로 클릭하면 사용자에게 묻는 명령 을 실행하고 싶습니다 .



답변

내가 아는 것은 아니지만 AutoHotkey 스크립트로 해결할 수 있습니다 . 예를 들어 Win+ n를 사용 하여 다음 데스크탑 배경으로 이동합니다.

#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!

은 ” N 인은” Send n영어 윈도우 7 (에만 유효 N의 내선 바탕 화면 배경). 밑줄이있는 키와 일치하도록 Windows 7이 영어가 아닌 경우이를 변경해야합니다.


답변

데스크탑 배경을 변경하는 훨씬 쉬운 방법을 찾았습니다.

  1. 데스크톱으로 이동 ( Windows Key+ D)
  2. 키보드에서 “메뉴”키를 누릅니다 (마우스 오른쪽 버튼 메뉴와 동일한 메뉴 열기) + “n”키 …

결과는 동일합니다-2 버튼, 바탕 화면이 변경되었습니다.


답변

WinActivate, ahk_class Progman

Microsoft Visual Studio가 최대화되어 실행되는 경우 작동하지 않는 것 같습니다. 그 외에는 잘 작동합니다.


편집 : 다음은 정상적으로 작동하지만 바탕 화면이 깜박입니다. 내가 추측하는 모든 것의 장단점.

#n::                             ; Use the Windows+n hotkey
Send #d                          ; Switch to 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
Send #d                          ; Switch away from the Desktop again
return                           ; Done!


답변

바탕 화면 아이콘이 표시된 경우에만 작동한다고 생각합니다. 그렇지 않으면 Shift-F10은 오른쪽 클릭 메뉴를 표시하지 않습니다.

편집 : 글쎄, 나는 AutoHotKey를 설치하지 않았지만 www.technixupdate.com/keyboard-shortcut-or-hotkey-to-switch-to-next-windows-7-desktop-wallpaper/의 누군가가 그것을 컴파일했습니다. 또는 바탕 화면 아이콘이 표시되지 않습니다. 아이콘이 숨겨져있을 때 “응용 프로그램”키와 Shift-F10이 작동하지 않아 작동하지 않을 것이라고 생각했습니다. 그래서, 내 말을 듣지 마십시오. 아마 작동 할 것입니다 …


답변

두 번째 버전의 스크립트가 가장 잘 실행되었습니다. 윈도우 키 + d를 명령하기 때문에 토글 윈도우 바탕 화면 사이가 바탕 화면에 이미있는 경우는 바탕 화면에서 멀리 전환 첫째 대신 그것으로 전환 할 수 있습니다. 다음과 같은 이유로 더 잘 작동합니다 🙂

#n::                             ; use the Windows+n hotkey
Send #m                          ; minimize all open windows
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
Send #+m                         ; undo minimize
return                           ; done!


답변