AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Comprehensive list of Windows hotkeys.
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Utilities & Resources
View previous topic :: View next topic  
Author Message
PhiLho



Joined: 27 Dec 2005
Posts: 6721
Location: France (near Paris)

PostPosted: Thu Apr 13, 2006 9:23 am    Post subject: Reply with quote

You know, HTML is universal enough, too...

jonny, I would move F6 to the Generic section: it has to be implemented by the applications. It often allows to go to the next buffer/document. Shift+F6 is the same, in reverse order.

In this Generic section, I would add Ctrl+W to close the current window and F3/Shift+F3 to repeat the search (find next/previous item). Again, they are not universal, but widely implemented.

I just discovered the Win+B combo, it doesn't seem well known, while it addresses a frequently asked question about methods to deal with systray icons.
_________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")
Back to top
View user's profile Send private message Visit poster's website
ZeGimp
Guest





PostPosted: Wed Jun 07, 2006 7:04 pm    Post subject: Win+B Reply with quote

I had no idea about Win+B! And I thought I knew all of the windows key shortcuts! Anyway, I tried it, and also found that space will act as a single click.

Thought I'd share just in case this is still being updated.

Ctrl+NumPadPlus is also amazingly useful, that's one you can't even do any other way that I know of (besides manually double clicking them all of course)

-G-
Back to top
Osiris



Joined: 29 Jul 2006
Posts: 1

PostPosted: Sat Jul 29, 2006 5:36 pm    Post subject: Reply with quote

I don't know if anyone is still doing this, but does anyone know of a way to disable/change these hot keys? Im having a slight Issue with one of my keys
Back to top
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10667

PostPosted: Sun Jul 30, 2006 9:15 pm    Post subject: Reply with quote

Most of these hotkeys can be disabled via something like:
#b::return

Simlarly, you can override them and have them perform some other action:
#b::MsgBox You pressed Win+B.

You can also disable all built-in Windows hotkeys except Win+L and Win+U by making the following change to the registry (should work on all OSes, reboot is probably required):

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
NoWinKeys REG_DWORD 0x00000001 (1)
Back to top
View user's profile Send private message Send e-mail
Dewi Morgan



Joined: 03 Oct 2005
Posts: 183

PostPosted: Tue Aug 08, 2006 4:40 pm    Post subject: Reply with quote

A new one for me: shift-F8 is a Windows hotkey for "listbox discontiguous extended selection". Not a lot of use to most people with a mouse, but actually genuinely useful to the AHK community if we want to select multiple, non-contiguous items in a selection list.

More here, on the blog of one of the windows programmers, who reckons it's a "wacked out" choice for a shortcut: and I agree. Still handy to know, though, reguardless.
http://blogs.msdn.com/oldnewthing/archive/2006/08/08/692129.aspx
_________________
Yet another hotkeyer.
Back to top
View user's profile Send private message
shredg



Joined: 10 Aug 2006
Posts: 3

PostPosted: Thu Aug 10, 2006 5:20 pm    Post subject: Re: Comprehensive list of Windows hotkeys. Reply with quote

jonny wrote:

Windows Hotkeys
...
Ctrl + Shift + Escape (XP Only): Invoke the task manager. On earlier OSes, acts like Ctrl + Escape.

It works on my Win2000. So it's not "XP only".

Good work, btw Wink
Back to top
View user's profile Send private message
PhiLho



Joined: 27 Dec 2005
Posts: 6721
Location: France (near Paris)

PostPosted: Tue Oct 10, 2006 9:15 am    Post subject: Reply with quote

I searched for some time how I could log in from the WinXP logon screen (the one with the icons for each registred user) without using the mouse.
I discovered accidentally the answer: if you hit the Down arrow, the focus will be on the first icon/password entry field. Down again, it goes to the next icon/field. You can type the password and Enter, and you are in!
_________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")
Back to top
View user's profile Send private message Visit poster's website
anon
Guest





PostPosted: Wed Nov 22, 2006 6:33 am    Post subject: One more to add Reply with quote

I think you can add Ctrl + Break to the list, as I couldn't find this. It brings up the system properties dialog.

Nice list though!! Smile
Back to top
anon
Guest





PostPosted: Wed Nov 22, 2006 6:36 am    Post subject: correct that! Reply with quote

Sorry it was Win + Break and you DID have it on the list -- well done! Smile
Back to top
bottom
Guest





PostPosted: Thu Nov 23, 2006 1:43 pm    Post subject: else Reply with quote

is there such a thing as a volume control hot key
Back to top
SanskritFritz



Joined: 17 Feb 2005
Posts: 280
Location: Hungary, Budapest

PostPosted: Fri Nov 24, 2006 9:05 am    Post subject: Re: else Reply with quote

bottom wrote:
is there such a thing as a volume control hot key
No, this is why such AHK scripts were born:
http://www.autohotkey.com/forum/viewtopic.php?t=6657
http://www.autohotkey.com/forum/viewtopic.php?t=88
http://www.autohotkey.com/forum/viewtopic.php?t=14161
_________________
Is there another word for synonym?
Back to top
View user's profile Send private message
BETLOG



Joined: 27 Nov 2006
Posts: 219
Location: Queensland, Australia

PostPosted: Thu Nov 30, 2006 1:19 pm    Post subject: Reply with quote

PhiLho wrote:
I searched for some time how I could log in from the WinXP logon screen (the one with the icons for each registred user) without using the mouse.
I discovered accidentally the answer: if you hit the Down arrow, the focus will be on the first icon/password entry field. Down again, it goes to the next icon/field. You can type the password and Enter, and you are in!

Hitting ctrl-alt-del twice in XP always used to bring up the old style login... but if i remember correctly they changed it (I don't know, i use the oldstyle login prompt by default anyway)
Back to top
View user's profile Send private message
ewerybody



Joined: 18 Sep 2006
Posts: 21

PostPosted: Tue Dec 19, 2006 7:48 pm    Post subject: Reply with quote

Generic

Ctrl + w is not only close tab in firefox! Its a general Windows hotkey for close document!!! You can close windows in Explorer, iExplorer, documents in Word, Excel, Photoshop, tabs in miranda... its just like Ctrl + F4 but better to access.

Mozilla Firefox 1.x

Shift + MouseWheelUp/Down Browse forward/backward - This works in every browser. (At least every one I ever used ;] (iE, FFox, Opera)) But its also available in the Explorer. At least It was meant to. If you ever come to setup a fresh Windows: TRY THIS!: Shift+MwheelUp/Down works in the Explorer at the very first windows start after installing! (However: Tekl from ac'tivAid-project was so kind to integrate this in the ExplorerHotkeys extension to make it work there again: awesome! :] )
Back to top
View user's profile Send private message
oy
Guest





PostPosted: Thu Jan 04, 2007 7:19 pm    Post subject: re: Reply with quote

Cool is there any default shortcut to command prompt?
Back to top
garry



Joined: 19 Apr 2005
Posts: 1547
Location: switzerland

PostPosted: Thu Jan 04, 2007 9:54 pm    Post subject: Reply with quote

DOS command here, have DOS window from selected folder
select a folder and then CTRL+ALT+d
Code:
^!d::
 ID := WinExist("A")
 WinGetClass, Class, ahk_id %ID%
 ControlGetText,ePath, Edit1, ahk_id %ID%
 Run, cmd.exe, %epath%
return
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Utilities & Resources All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8  Next
Page 4 of 8

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group