Search found 796 matches

by Tom
Jan 6th, ’24, 14:48
Forum: User Commands and Scripts
Topic: Window Screen to Paint.net
Replies: 5
Views: 2270

Re: Window Screen to Paint.net

Would this help?

Code: Select all

clipsave=%clipboardall%
by Tom
Jan 5th, ’24, 17:50
Forum: User Commands and Scripts
Topic: Window Screen to Paint.net
Replies: 5
Views: 2270

Re: Window Screen to Paint.net

Not sure, seems to be a paint.net behaviour https://www.google.com/search?q=Clipboard+doesn%27t+contain+an+image+site:forums.getpaint.net&client=firefox-b-d&sca_esv=596005964&sxsrf=AM9HkKmQDS2L8AT_RNFRy-a0c7E-hmy4RA:1704476935034&sa=X&ved=2ahUKEwj18_Wx58aDAxVWZ_EDHRIGC7kQrQIoBHoE...
by Tom
Jan 5th, ’24, 17:40
Forum: General Discussion
Topic: Excel lookup using INPUT date, to populate Text Expansion
Replies: 6
Views: 1944

Re: Excel lookup using INPUT date, to populate Text Expansion

You will need to set a short script for doing this. Some ideas: Extract YYYY value, assuming US date format MM-dd-yyy: RenewalDate:="01-31-2024" Year:=SubStr(RenewalDate, 7) Calculate the difference between RenewalDate and today: StringSplit, COL, RenewalDate, - Date := COL3 COL1 COL2 EnvS...
by Tom
Jan 5th, ’24, 15:59
Forum: Suggestions
Topic: Feature Request: Shortcuts
Replies: 1
Views: 1181

Re: Feature Request: Shortcuts

Why not using a Start Menu then? Set the shortcut to open the menu and then choose one of the actions. ;)
by Tom
Jan 5th, ’24, 15:57
Forum: General Discussion
Topic: Can i set individual shortcut for enable and disable auto complete
Replies: 1
Views: 1176

Re: Can i set individual shortcut for enable and disable auto complete

Currently it is only possible to set the toggle shortcut which enables/disables Auto Complete. What do you mean by "conflicts with input method"? Auto Complete doesn't work in Input macros.
by Tom
Jan 5th, ’24, 15:52
Forum: General Discussion
Topic: Text expander doesn't work when recording macro
Replies: 1
Views: 1096

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: 861

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: 1977

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: 564

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: 1977

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...