Search found 796 matches

by Tom
Dec 26th, ’20, 11:22
Forum: General Discussion
Topic: gamepad support?
Replies: 1
Views: 1913

Re: gamepad support?

You can enter any AutoHotkey shortcut definition manually by double-clicking on a shortcut field. ;)
by Tom
Dec 23rd, ’20, 07:12
Forum: User Commands and Scripts
Topic: Tab sent as spaces in autocomplete
Replies: 2
Views: 2751

Re: Tab sent as spaces in autocomplete

This should work:

Text{Tab}Text
by Tom
Dec 20th, ’20, 11:00
Forum: General Discussion
Topic: Detailed Video Tutorials Available?
Replies: 2
Views: 2370

Re: Detailed Video Tutorials Available?

The video tutorials are planned for 2021. Until then, we suggest starting with the online documentation - there are many step by step instructions there:
https://fastkeysautomation.com/documentation/index.html
by Tom
Dec 20th, ’20, 10:50
Forum: General Discussion
Topic: Open/Close the current programm with one key
Replies: 2
Views: 2267

Re: Open/Close the current programm with one key

Try this (Type: Command):

Code: Select all

PName:="ahk_exe WINWORD.EXE"  ;find the process name using Window Information Tool

if(WinExist(PName))
    if(WinActive(PName))
        WinMinimize, %PName%
    else
        WinActivate, %PName%
else
    run, winword  ;full path to the program
return
by Tom
Dec 19th, ’20, 19:15
Forum: General Discussion
Topic: Spectacular Start menu designed in FastKeys - can you beat this?
Replies: 27
Views: 20940

Spectacular Start menu designed in FastKeys - can you beat this?

I'm posting this example of a great FastKeys Start menu designed and used by one of our power users. I think is pretty awesome - what do you think?

How do you use FastKeys Start menus? Can you show us your examples? :)

Image
by Tom
Dec 8th, ’20, 21:52
Forum: General Discussion
Topic: ctrl+c pop up box
Replies: 2
Views: 2186

Re: ctrl+c pop up box

Check your Preferences - see if you have set any of the shortcuts to Ctrl + C.
by Tom
Dec 8th, ’20, 21:51
Forum: General Discussion
Topic: Startmenu popping up only after a long while
Replies: 2
Views: 2196

Re: Startmenu popping up only after a long while

Do you use a very large start menu? Try to disable some items with "Include files and Subfolders" option. Any difference?
by Tom
Dec 8th, ’20, 21:48
Forum: General Discussion
Topic: Saperate database and settings for different users
Replies: 1
Views: 2187

Re: Saperate database and settings for different users

You need to manually load the settings, FastKeys is installed per computer.
by Tom
Dec 5th, ’20, 20:07
Forum: General Discussion
Topic: Complete newbie stupid question
Replies: 9
Views: 6272

Re: Complete newbie stupid question

In slower apps you may need to set a small Key Delay - Preferences/Text Expander/Advanced - try 50-100ms.