Search found 1919 matches

by Marko
Oct 14th, ’25, 15:07
Forum: General Discussion
Topic: Individually Exclude Specific Applications from Specific Shortcuts
Replies: 3
Views: 24203

Re: Individually Exclude Specific Applications from Specific Shortcuts

It's on the wish-list but not yet implemented, sorry.
by Marko
Oct 14th, ’25, 15:06
Forum: General Discussion
Topic: On clipboard manager copy button not work!
Replies: 6
Views: 25828

Re: On clipboard manager copy button not work!

I tried on our computers and it work as expected. What kind of the data are you copying?
by Marko
Oct 14th, ’25, 14:58
Forum: General Discussion
Topic: I'm forced to ask because I cannot find anything in the help, and the search here doesn't work properly
Replies: 4
Views: 19832

Re: I'm forced to ask because I cannot find anything in the help, and the search here doesn't work properly

Startup script option allows users to enter a specific AutoHotkey code which will be run each time FastKeys starts. This is meant for advanced users with experience in scripting. What exactly would you like to achieve?
by Marko
Sep 30th, ’25, 09:58
Forum: Suggestions
Topic: Letters or extended numbering for menu selections
Replies: 2
Views: 21160

Re: Letters or extended numbering for menu selections

Numbers are provided as shortcuts and it only works for 1-9 keys. We can think if it would be possible to improve it in one the future releases.
by Marko
Sep 19th, ’25, 15:52
Forum: General Discussion
Topic: How to set default date in selection form
Replies: 1
Views: 15824

Re: How to set default date in selection form

Unfortunately this is currently not available. However if you enable the "Remember last input" option, the latest user selection will be pre-selected when calling the macro next time. The date math is available in the Date and Time macro.
by Marko
Sep 14th, ’25, 20:29
Forum: General Discussion
Topic: AltGr
Replies: 2
Views: 16019

Re: AltGr

AltGr key is a special key in Windows, normally used is used to type additional characters. Windows internally maps AltGr as Ctrl + Alt.

To use AltGr + Y as a shortcut in FastKeys, double click on the shortcut entry field and insert the following: <^>!y
by Marko
Sep 14th, ’25, 20:11
Forum: General Discussion
Topic: Text Expander-Sparatic Text Output
Replies: 10
Views: 34062

Re: Text Expander-Sparatic Text Output

Rich Text formatting uses a Windows clipboard to paste the phrase result. Increasing the Paste delay in Properties/Text Expander/Advanced should help. It may also be that another application on your computer is causing this. Could you temporarily disable other clipboard management software, anti-vir...
by Marko
Sep 3rd, ’25, 13:23
Forum: User Commands and Scripts
Topic: Add "N" days to selected dd/mm/yyyy date
Replies: 6
Views: 21318

Re: Add "N" days to selected dd/mm/yyyy date

It works for me. Try Sleep, 200 instead of ClipWait and then experiment with different values.
by Marko
Sep 2nd, ’25, 18:52
Forum: User Commands and Scripts
Topic: Add "N" days to selected dd/mm/yyyy date
Replies: 6
Views: 21318

Re: Add "N" days to selected dd/mm/yyyy date

I tried the script and it works as expected. What's exactly is not working?
by Marko
Sep 2nd, ’25, 18:44
Forum: User Commands and Scripts
Topic: Minimize and again Maximize the same window
Replies: 4
Views: 23353

Re: Minimize and again Maximize the same window

You need to make sure the window is actually active, click on the header to be sure. Also try this:

Code: Select all

If not WindowID
{
	WinGet WindowID, ID, A
	WinMinimize, ahk_id %WindowID%
}
else
{
	WinActivate, ahk_id %WindowID%
	WinRestore, ahk_id %WindowID%
	WindowID:=""
}
return