Search found 431 matches
- Jan 14th, ’21, 08:59
- Forum: User Commands and Scripts
- Topic: how to create a series of dashes
- Replies: 1
- Views: 13
Re: how to create a series of dashes
In which application do you experience this? Try to introduce a small Key Delay (50-100ms) in Preferences/Text Expander/Advanced.
- Jan 9th, ’21, 18:13
- Forum: General Discussion
- Topic: How to avoid empty lines ?
- Replies: 3
- Views: 42
Re: How to avoid empty lines ?
It could be that you copied the text from another application and there are additional hidden new line characters. If this is the case, remove new lines manually and add them again.
FastKeys expands the text exactly as seen on the edit screen - new line or {Enter} will be the same.
FastKeys expands the text exactly as seen on the edit screen - new line or {Enter} will be the same.
- Jan 8th, ’21, 21:39
- Forum: General Discussion
- Topic: String not deleting
- Replies: 3
- Views: 30
Re: String not deleting
In which app?
Try to increase a Key Delay to 80-100ms.
Try to increase a Key Delay to 80-100ms.
- Dec 30th, ’20, 09:41
- Forum: General Discussion
- Topic: Remove Formatting During Copy and Paste
- Replies: 3
- Views: 64
Re: Remove Formatting During Copy and Paste
Just change the shortcut to Ctrl + V. This should override the system shortcut.
- Dec 26th, ’20, 11:24
- Forum: General Discussion
- Topic: Remove Formatting During Copy and Paste
- Replies: 3
- Views: 64
Re: Remove Formatting During Copy and Paste
There is an example shortcut available - Paste without formatting. Is this what you are looking for?
- Dec 26th, ’20, 11:22
- Forum: General Discussion
- Topic: gamepad support?
- Replies: 1
- Views: 36
Re: gamepad support?
You can enter any AutoHotkey shortcut definition manually by double-clicking on a shortcut field. 

- Dec 23rd, ’20, 07:12
- Forum: User Commands and Scripts
- Topic: Tab sent as spaces in autocomplete
- Replies: 2
- Views: 43
Re: Tab sent as spaces in autocomplete
This should work:
Text{Tab}Text
Text{Tab}Text
- Dec 20th, ’20, 11:00
- Forum: General Discussion
- Topic: Detailed Video Tutorials Available?
- Replies: 2
- Views: 77
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
https://fastkeysautomation.com/documentation/index.html
- Dec 20th, ’20, 10:50
- Forum: General Discussion
- Topic: Open/Close the current programm with one key
- Replies: 2
- Views: 74
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
- Dec 19th, ’20, 19:15
- Forum: General Discussion
- Topic: Spectacular Start menu designed in FastKeys - can you beat this?
- Replies: 1
- Views: 90
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?

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

