Search found 791 matches

by Tom
Sep 9th, ’21, 19:27
Forum: General Discussion
Topic: Any chance to send ctrl+shift+m at once?
Replies: 2
Views: 475

Re: Any chance to send ctrl+shift+m at once?

{Ctrl down}{Shift down}m{Shift up}{Ctrl up}
by Tom
Sep 9th, ’21, 17:43
Forum: General Discussion
Topic: Is there a way to record subscript/superscripts for autocomplete?
Replies: 8
Views: 2679

Re: Is there a way to record subscript/superscripts for autocomplete?

It works for me, you can copy this into the phrase f₃ But it is font dependent, some fonts may not support this characters. You could also simulate key presses in Word - the shortcuts are Ctrl+= and Ctrl++ (you may need to adapt to your keyboard layout): f{Ctrl down}+{Ctrl Up}3{Ctrl down}+{Ctrl Up} ...
by Tom
Sep 5th, ’21, 09:36
Forum: General Discussion
Topic: Opening a folder
Replies: 1
Views: 376

Re: Opening a folder

Type: Run

Code: Select all

C:\Program Files
or use Open Folder macro.
by Tom
Sep 5th, ’21, 09:34
Forum: General Discussion
Topic: Opening Google maps
Replies: 1
Views: 435

Re: Opening Google maps

Type: Command

Code: Select all

InputBox, Location , Maps, Location:,,260,123,,,,15
Run, https://www.google.com/maps/place/%Location%
by Tom
Sep 5th, ’21, 09:21
Forum: General Discussion
Topic: Modify Font Size in Script
Replies: 5
Views: 1717

Re: Modify Font Size in Script

Play with the following two lines

Gui 19:Font, s100
Gui 19:Add, Text, w200 Vdisp Cred Right
by Tom
Sep 2nd, ’21, 20:40
Forum: General Discussion
Topic: Forcing Lowercase in TextExpander output
Replies: 2
Views: 543

Re: Forcing Lowercase in TextExpander output

You can disable the "Adjust to typed case" option in Preferences/Text Expander.
by Tom
Sep 1st, ’21, 14:57
Forum: General Discussion
Topic: Is there a way to record subscript/superscripts for autocomplete?
Replies: 8
Views: 2679

Re: Is there a way to record subscript/superscripts for autocomplete?

The most universal way is to open the Start menu, choose Run and then type charmap. Character Map will open - Select Consolas font (default in FastKeys) and click on the one you want and then copy. Then paste it to FastKeys substitute field.
by Tom
Aug 24th, ’21, 15:25
Forum: General Discussion
Topic: How to set auto complete disableled at startup ?
Replies: 2
Views: 1740

Re: How to set auto complete disableled at startup ?

Try using Tools/Window information to get the window title or class.

You can disable the module in Preferences/Module activation. Is this what you are looking for?
by Tom
Aug 24th, ’21, 15:22
Forum: Suggestions
Topic: BUG?
Replies: 6
Views: 9666

Re: BUG?

In your case FastKeys cannot access or save the settings to the specified location path. What is the location of your settings file? Local disk, network? Is the path accessible at all times and you have the full access rights?

Please contact our support mail for more detailed help.
by Tom
Aug 21st, ’21, 13:47
Forum: User Commands and Scripts
Topic: Move Mouse on Interval
Replies: 2
Views: 6928

Re: Move Mouse on Interval

Great idea. This is very handy when you want to keep the computer awake, for example, when working from home and want to keep your remote session alive while you are away from your machine. This simple script will simulate user activity by slightly moving the mouse every minute. Running the script a...