Search found 1718 matches

by Marko
Nov 8th, ’23, 17:31
Forum: General Discussion
Topic: Run corresponding File through ID number(manual input)
Replies: 1
Views: 1367

Re: Run corresponding File through ID number(manual input)

Sure, use Type: run with multiple commands. Use a delimiter as a first character in a new line to divide multiple command actions. Default delimiter is "/" which can be changed in Preferences > Text Expander. For example: calc /C:\Program Files\FastKeys\FastKeys.exe /D:\MyFolder To improve...
by Marko
Oct 29th, ’23, 13:40
Forum: User Commands and Scripts
Topic: Could not close the previous instance of this script. Keep waiting?
Replies: 1
Views: 1045

Re: Could not close the previous instance of this script. Keep waiting?

In case of such issue open Task Manager (Ctrl+Shift+Escape) and manually close the application.
by Marko
Oct 18th, ’23, 08:19
Forum: User Commands and Scripts
Topic: Condition - with clipboard
Replies: 1
Views: 1198

Re: Condition - with clipboard

Use Condition macro with the condition
clipboard="male"
by Marko
Sep 20th, ’23, 18:24
Forum: User Commands and Scripts
Topic: How-to: toggle app foreground/minimize
Replies: 2
Views: 1337

Re: How-to: toggle app foreground/minimize

A simple script (Type: Command) using Chrome window as an example:

Code: Select all

Run, Chrome
Sleep 3000
WinActivate, ahk_class Chrome_WidgetWin_1
Sleep 3000  
WinMinimize, ahk_class Chrome_WidgetWin_1
by Marko
Sep 20th, ’23, 18:14
Forum: General Discussion
Topic: operation with integer
Replies: 3
Views: 1036

Re: operation with integer

FastKeys currently supports AutoHotkey v1.
https://www.autohotkey.com/docs/v1/
by Marko
Sep 20th, ’23, 18:10
Forum: General Discussion
Topic: Lost Licence Keys
Replies: 1
Views: 830

Re: Lost Licence Keys

In such case you need to contact our support mail using the email address used when purchasing.
by Marko
Sep 19th, ’23, 20:58
Forum: Suggestions
Topic: HTML Editor
Replies: 7
Views: 1676

Re: HTML Editor

Have you tried to reset ALL Preferences to defaults and then create a new item?
by Marko
Sep 19th, ’23, 20:56
Forum: General Discussion
Topic: recent applications shortcut
Replies: 2
Views: 850

Re: recent applications shortcut

I'm not sure I understand. Do you wish to rotate between open windows or running recent applications?
by Marko
Sep 19th, ’23, 20:54
Forum: General Discussion
Topic: operation with integer
Replies: 3
Views: 1036

Re: operation with integer

There is no Integer function in AutoHotkey, use Round function instead. Also, there should be no space between function name and parentheses.
https://www.autohotkey.com/docs/v1/lib/Math.htm#Round

Code: Select all

var4  :=  round(var1 / var2)