Search found 791 matches

by Tom
Jan 5th, ’24, 15:52
Forum: General Discussion
Topic: Text expander doesn't work when recording macro
Replies: 1
Views: 1095

Re: Text expander doesn't work when recording macro

It is difficult to say without seeing the command. First set ALL Preferences to defaults, if you will still experience the issue, please contact us at our support email with a screenshot of your command.
by Tom
Dec 30th, ’23, 13:24
Forum: General Discussion
Topic: Recognizing the computer time
Replies: 2
Views: 854

Re: Recognizing the computer time

Well, you need a script with a timer. The timer could check the current time and trigger the events accordingly.
https://www.autohotkey.com/docs/v1/lib/SetTimer.htm
by Tom
Dec 30th, ’23, 13:17
Forum: General Discussion
Topic: Date calculations
Replies: 4
Views: 1963

Re: Date calculations

1. Selection Form macro, Name: MyDate, Type: DateTime, Format: dd/MM/yyyy, No output
2. Insert Command Code macro:

Code: Select all

StringSplit, COL, SELECT_MyDate, /
Date:=COL3 COL2 COL1
Date += 7, Days
FormatTime, Date, %Date%, dd/MM/yyyy 
Send, % Date 
by Tom
Dec 30th, ’23, 11:25
Forum: General Discussion
Topic: Output if not checked
Replies: 2
Views: 553

Re: Output if not checked

Negative selection value is currently not supported in a direct way, we will implement this in one of the next releases.

In the meantime you could use a Condition (If-Else) macro to achieve the same result. Alternatively you could also use Insert Command Code macro.
by Tom
Dec 28th, ’23, 18:38
Forum: General Discussion
Topic: Date calculations
Replies: 4
Views: 1963

Re: Date calculations

To pick a date, use Selection Form macro, Type: DateTime. To write a calculated date (from today), use Date and Time macro. To pick a date and then perform the maths on it, you need a script. It depends on the date format you are using in Selection Form macro - let me know and I will try to create i...
by Tom
Dec 28th, ’23, 18:21
Forum: General Discussion
Topic: Can you repeat a command until stopped?
Replies: 1
Views: 1527

Re: Can you repeat a command until stopped?

There are many possibilities but you need to make a script, here is one example. Create it as a shortcut which will act as start and stop (Type: Command): SetTimer, Process, % (running := !running) ? "100" : "Off" ;runs each 100ms, change it as needed Return Process: ;commands he...
by Tom
Dec 22nd, ’23, 13:15
Forum: User Commands and Scripts
Topic: Script for random quotes not working anymore
Replies: 4
Views: 2204

Re: Script for random quotes not working anymore

I tested it again on my end and it works as expected. I see you have another code in CODE_kurser macro. Check it out, maybe this is causing the trouble.
by Tom
Dec 21st, ’23, 23:26
Forum: User Commands and Scripts
Topic: Shortcut doesnt repeat over 10 times
Replies: 3
Views: 1333

Re: Shortcut doesnt repeat over 10 times

What you are doing should work, is your phrase very long?
Alternatively you can try a Loop macro:
https://fastkeysautomation.com/documentation5/Loop.html
by Tom
Dec 21st, ’23, 23:22
Forum: User Commands and Scripts
Topic: Script for random quotes not working anymore
Replies: 4
Views: 2204

Re: Script for random quotes not working anymore

Please make sure the text file contains quotes, each in a new line.
Maybe your file is formatted differently, in this can you may need to change the last line to

Send, % SubStr(List, 1, InStr(List, "`n")-1)
by Tom
Dec 21st, ’23, 23:18
Forum: User Commands and Scripts
Topic: Text Expander - Not Insert Labels
Replies: 1
Views: 1130

Re: Text Expander - Not Insert Labels

You can add a description prefix to selections. In this case only description will appear on a popup window. The default description separator is "::" and can be changed in Preferences > Text Expander.

Home Number:: 123456789
Office Number:: 987654321