Search found 1674 matches

by Marko
Jul 25th, ’23, 08:50
Forum: General Discussion
Topic: Is it possible to 'Pause' FK from AHK?
Replies: 8
Views: 1496

Re: Is it possible to 'Pause' FK from AHK?

Does this work?

Code: Select all

SendLevel 1
Send, \ui{Space}
SendLevel 0
by Marko
Jul 25th, ’23, 08:47
Forum: General Discussion
Topic: Is it possible for an AHK script, to override FastKeys?
Replies: 2
Views: 643

Re: Is it possible for an AHK script, to override FastKeys?

Both shortcuts will trigger. The only way is to disable F1 in FastKeys.
by Marko
Jul 25th, ’23, 08:32
Forum: General Discussion
Topic: New purchase question and suggestions for help documentation
Replies: 2
Views: 599

Re: New purchase question and suggestions for help documentation

Hi and welcome to FastKeys. Could you try the examples in this thread to see if it helps? https://www.fastkeysautomation.com/forum/viewtopic.php?t=66 Thanks for your suggestions, we will try to improve in the future. The best way to record a macro is to add a new item and select “Record” icon. The r...
by Marko
Jul 21st, ’23, 18:01
Forum: General Discussion
Topic: creating toolbars and menus within toolbars
Replies: 2
Views: 470

Re: creating toolbars and menus within toolbars

Set the menu shortcut in Preferences/Start Menu #1-4, for example Ctrl+Alt+X
In the other menu, create an entry, Type: Command

Code: Select all

SendLevel 1
send ^!x  ;calls Ctrl+Alt+X shortcut
SendLevel 0
by Marko
Jul 16th, ’23, 21:08
Forum: User Commands and Scripts
Topic: Is there anyway to move the cursor L or R by multiple words?
Replies: 3
Views: 502

Re: Is there anyway to move the cursor L or R by multiple words?

You can simulate keypresses in FastKeys, standard Windows shortcuts to move one word left or right are Ctrl+Left and Ctrl+Right.

Send mode:

Code: Select all

{Ctrl Down}{Left}{Ctrl Up}
{Ctrl Down}{Right}{Ctrl Up}
Command mode:

Code: Select all

^{Left}
^{Right}
by Marko
Jul 16th, ’23, 21:01
Forum: User Commands and Scripts
Topic: Anyway to create a portable installation?
Replies: 1
Views: 185

Re: Anyway to create a portable installation?

The Portable Edition is available from our webpage (see the bottom Downloads section).
by Marko
Jul 11th, ’23, 14:56
Forum: General Discussion
Topic: Error: Continuable Exception_Access_Violation
Replies: 4
Views: 509

Re: Error: Continuable Exception_Access_Violation

This is probably caused by one of the entered commands. Does it happen at startup? You can send us your fdb settings file and we will check.
by Marko
Jul 8th, ’23, 18:36
Forum: General Discussion
Topic: Escaping the equal sign
Replies: 1
Views: 468

Re: Escaping the equal sign

Sometimes it is safest to enclose the path in double quotes.

Code: Select all

RunWait "7z a -tzip -mx=9"
by Marko
Jul 6th, ’23, 11:57
Forum: General Discussion
Topic: Shortcut to open the Fastkeys Settings
Replies: 2
Views: 462

Re: Shortcut to open the Fastkeys Settings

You can set the shortcut in Preferences/General/Shortcuts. The default is F8.
by Marko
Jul 5th, ’23, 19:34
Forum: General Discussion
Topic: What can be passed through from 'send' mode, to 'insert command code' function.
Replies: 3
Views: 1003

Re: What can be passed through from 'send' mode, to 'insert command code' function.

I see what you mean. As mentioned COM object is currently not supported in such a way and you need to create a standalone script. You can use InputBox command to gather the data.
https://www.autohotkey.com/docs/v1/lib/InputBox.htm