Search found 626 matches
- Aug 19th, ’22, 18:05
- Forum: General Discussion
- Topic: Multiple gesture keys
- Replies: 1
- Views: 24
Re: Multiple gesture keys
No, sorry, there is only one general gesture key.
- Aug 12th, ’22, 19:42
- Forum: General Discussion
- Topic: Question regarding autocomplete feature.
- Replies: 1
- Views: 36
Re: Question regarding autocomplete feature.
You can enable "Include words containing the string" and "Include similar words (smart search)" options in Preferences/Auto Complete. However, it will search one word only.
- Aug 12th, ’22, 19:30
- Forum: Suggestions
- Topic: New Shortcut gives error in FastKeys Portable 5.08
- Replies: 1
- Views: 26
Re: New Shortcut gives error in FastKeys Portable 5.08
Thanks for reporting - this is a bug when using a shortcut with the backtick (`) character. We will resolve it in the next version. Until then, please use another shortcut.
- Aug 6th, ’22, 20:54
- Forum: General Discussion
- Topic: Autocomplete character limit?
- Replies: 1
- Views: 63
Re: Autocomplete character limit?
Current limitation for Wordlist items is 200 characters. For longer text you can use an individual entry in Auto Complete.
- Aug 1st, ’22, 14:39
- Forum: User Commands and Scripts
- Topic: Voice on numpad
- Replies: 1
- Views: 88
Re: Voice on numpad
Find the sound files on the net and copy them to a folder, for example D:\Sounds One source: https://evolution.voxeo.com/library/audio/prompts/numbers/index.jsp Then create ten shortcuts in FastKeys, 1-0. For number one this would be Shortcut:: NumPad1 (Enable "Native" option) Type: Command SoundPla...
- Aug 1st, ’22, 13:55
- Forum: General Discussion
- Topic: Formatting changes on clipboard
- Replies: 1
- Views: 57
Re: Formatting changes on clipboard
I tried and there were no issues. Could you share more detailed steps of what you are doing?
- Jul 24th, ’22, 13:45
- Forum: General Discussion
- Topic: Scripting newbie
- Replies: 4
- Views: 114
Re: Scripting newbie
Are you saying that this does not produce a click?
Could you try running FastKeys as administrator? Or enable "Run as administrator" option in Preferences/General.
Is the destination window in focus?
https://www.autohotkey.com/docs/command ... tivate.htm
Code: Select all
Click, 85, 130
Is the destination window in focus?
https://www.autohotkey.com/docs/command ... tivate.htm
- Jul 23rd, ’22, 09:19
- Forum: General Discussion
- Topic: Scripting newbie
- Replies: 4
- Views: 114
Re: Scripting newbie
Send, {Down} Send, ^c Sleep, 100 MouseMove, 85, 130 Click Sleep, 100 Send, ^t Send, {BackSpace} Sleep, 200 Send, ^v Send, {Enter} MouseMove, 1550,-1530 ;alternatively use this to move from its current position by X pixels to the right (left if negative) and Y pixels down (up if negative) ;MouseMove...
- Jul 23rd, ’22, 09:02
- Forum: General Discussion
- Topic: Date in DD/MM/YYYY format to input into excel's cells
- Replies: 2
- Views: 58
Re: Date in DD/MM/YYYY format to input into excel's cells
In Type: Command you can use AutoHotkey date and time variables: https://www.autohotkey.com/docs/Variables.htm#date ....value := A_MM "-" A_DD "-" A_YYYY You could also use a FormatTime command: FormatTime, A_LongDate,, LongDate ....value := A_LongDate Note that percent signs are not used in express...
- Jul 23rd, ’22, 08:39
- Forum: Suggestions
- Topic: %Cursor% in HTML text
- Replies: 1
- Views: 73
Re: %Cursor% in HTML text
You are right, cursor positioning will not work with HTML formatting. Try using "Insert file contents" macro to insert HTML file instead.