Search found 791 matches

by Tom
Jan 31st, ’24, 10:05
Forum: General Discussion
Topic: Open link from selected text
Replies: 3
Views: 608

Re: Open link from selected text

Sorry, not sure I understand what you mean. Normally in browsers you can just click on the link to open it.
by Tom
Jan 14th, ’24, 10:13
Forum: General Discussion
Topic: Excel lookup using INPUT date, to populate Text Expansion
Replies: 6
Views: 1930

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

You just need to set the initial value for Date variable to A_Now before applying the EnvAdd calculation. ; Split the SELECT_RnlDt string into an array using "/" StringSplit, COL, SELECT_RnlDt, / ; Combine the parts of the date into a single variable in the format yyyymmdd Date := COL3 . C...
by Tom
Jan 9th, ’24, 19:40
Forum: General Discussion
Topic: Is there a way to make a hotkey as a tally counter?
Replies: 1
Views: 1031

Re: Is there a way to make a hotkey as a tally counter?

Check "User Statistics" from the Tools menu. FastKeys is tracking how many times commands were executed, how many keystrokes were saved and calculates the savings accordingly.
by Tom
Jan 9th, ’24, 19:37
Forum: General Discussion
Topic: Excel lookup using INPUT date, to populate Text Expansion
Replies: 6
Views: 1930

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

Currently it is possible to use Excel File Lookup macro to lookup for one column in Excel and then return any other column. We may be expanding the possibilities in the future. ;)
by Tom
Jan 6th, ’24, 22:13
Forum: User Commands and Scripts
Topic: Window Screen to Paint.net
Replies: 5
Views: 2255

Re: Window Screen to Paint.net

Hm, then you can use your script you posted and works. The only difference is that it doesn’t switch back to the original clipboard value after pasting.
by Tom
Jan 6th, ’24, 14:48
Forum: User Commands and Scripts
Topic: Window Screen to Paint.net
Replies: 5
Views: 2255

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

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

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

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

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.