Search found 796 matches

by Tom
Jul 15th, ’20, 20:03
Forum: General Discussion
Topic: Netbook enter key
Replies: 2
Views: 1348

Re: Netbook enter key

Have you tried to enable other selection keys in Preferences/Appearance?
by Tom
Jul 15th, ’20, 20:00
Forum: Suggestions
Topic: Capitalization not working consistently
Replies: 5
Views: 4738

Re: Capitalization not working consistently

I'm glad you found the solution. In which application have you experienced this behavior?
by Tom
Jul 13th, ’20, 20:50
Forum: Suggestions
Topic: Text Expander Very Slow
Replies: 1
Views: 3069

Re: Text Expander Very Slow

It could be dependent on the editor. Could you try in Notepad? It should be instant. If not, check Preferences/Text Expander/Advanced - any key delay settings?
by Tom
Jul 10th, ’20, 19:39
Forum: General Discussion
Topic: expanding i and im
Replies: 2
Views: 1450

Re: expanding i and im

Hi Bridger and welcome to the forum. You can get this working by removing ' character from the list of ending characters in Preferences/Text Expander/Ending characters. This way ' character will no longer trigger the expansion. I tested the double capitals feature and it works for me - corrections a...
by Tom
Jul 8th, ’20, 22:21
Forum: General Discussion
Topic: Middle button to open Start Menu??
Replies: 6
Views: 8998

Re: Middle button to open Start Menu??

No, double-click on a shortcut field and copy the above code as an advanced shortcut. Then set a command as you like, for example Send, !1
by Tom
Jul 7th, ’20, 19:42
Forum: User Commands and Scripts
Topic: Double and Triple ESC key
Replies: 5
Views: 7974

Re: Double and Triple ESC key

You can still load the example from the Library - search for "Double". This one would close the window or tab (if in Chrome) on Esc double press: WinGetClass Class, A If (A_ThisHotKey = A_PriorHotkey && A_TimeSincePriorHotkey < 350) { If (Class="Chrome_WidgetWin_1") Send ...
by Tom
Jul 7th, ’20, 19:26
Forum: General Discussion
Topic: run a program - singleinstance only
Replies: 2
Views: 1762

Re: run a program - singleinstance only

This example runs or activates Firefox (Type; Command):

Code: Select all

IfWinExist, ahk_class MozillaWindowClass
	WinActivate, ahk_class MozillaWindowClass
else
	Run, firefox
return
by Tom
Jul 7th, ’20, 19:15
Forum: General Discussion
Topic: Middle button to open Start Menu??
Replies: 6
Views: 8998

Re: Middle button to open Start Menu??

Sure, double-click on a key field to define any shortcut combination according to Autohotkey syntax:

Code: Select all

~LButton & RButton
Be careful to include ~ character to allow the buttons native functions.
by Tom
Jul 4th, ’20, 09:21
Forum: General Discussion
Topic: Adding a symbol (trademark)
Replies: 1
Views: 1038

Re: Adding a symbol (trademark)

There is one in the Symbols Phrase file, the abbreviation is "ttm".

You can also make your own:
String: ttm
Command: ™
Hold left Alt key and type 0153 on numeric pad to enter the symbol.
You may want to enable "Trigger inside word" option.
by Tom
Jun 14th, ’20, 18:44
Forum: General Discussion
Topic: Auto Complete - Signature
Replies: 2
Views: 1367

Re: Auto Complete - Signature

There is another signature example in Text Expander - you may delete this one too.