AutoHotkey Community

It is currently May 27th, 2012, 7:49 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 140 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 10  Next
Author Message
 Post subject:
PostPosted: April 13th, 2006, 10:23 am 
Offline

Joined: December 27th, 2005, 1:46 pm
Posts: 6837
Location: France (near Paris)
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.

_________________
Image vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Win+B
PostPosted: June 7th, 2006, 8:04 pm 
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-


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: July 29th, 2006, 6:36 pm 
Offline

Joined: July 29th, 2006, 6:34 pm
Posts: 1
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 30th, 2006, 10:15 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
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)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 8th, 2006, 5:40 pm 
Offline

Joined: October 3rd, 2005, 2:42 am
Posts: 186
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/archi ... 92129.aspx

_________________
Yet another hotkeyer.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: August 10th, 2006, 6:20 pm 
Offline

Joined: August 10th, 2006, 6:11 pm
Posts: 3
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 ;)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 10th, 2006, 10:15 am 
Offline

Joined: December 27th, 2005, 1:46 pm
Posts: 6837
Location: France (near Paris)
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!

_________________
Image vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")


Report this post
Top
 Profile  
Reply with quote  
 Post subject: One more to add
PostPosted: November 22nd, 2006, 7:33 am 
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!! :)


Report this post
Top
  
Reply with quote  
 Post subject: correct that!
PostPosted: November 22nd, 2006, 7:36 am 
Sorry it was Win + Break and you DID have it on the list -- well done! :)


Report this post
Top
  
Reply with quote  
 Post subject: else
PostPosted: November 23rd, 2006, 2:43 pm 
is there such a thing as a volume control hot key


Report this post
Top
  
Reply with quote  
 Post subject: Re: else
PostPosted: November 24th, 2006, 10:05 am 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
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?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 30th, 2006, 2:19 pm 
Offline

Joined: November 27th, 2006, 7:41 am
Posts: 222
Location: Queensland, Australia
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)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 19th, 2006, 8:48 pm 
Offline

Joined: September 18th, 2006, 5:38 pm
Posts: 61
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! :] )


Report this post
Top
 Profile  
Reply with quote  
 Post subject: re:
PostPosted: January 4th, 2007, 8:19 pm 
Cool is there any default shortcut to command prompt?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 4th, 2007, 10:54 pm 
Offline

Joined: April 19th, 2005, 10:26 am
Posts: 2249
Location: switzerland
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


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 140 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 10  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group