Search found 796 matches

by Tom
Jul 22nd, ’19, 20:32
Forum: General Discussion
Topic: Question Time
Replies: 2
Views: 1100

Re: Question Time

Something like this?

Code: Select all

Send, Good{Space}
if ((A_Hour=18) and (A_Min>30)) or (A_Hour>=19) or (A_Hour<4)
	Send, night2
else if (A_Hour<10)
	Send, morning
else if (A_Hour<14)
	Send, afternoon
else
	Send, night1
Send, {Space}
by Tom
Jul 22nd, ’19, 06:31
Forum: Suggestions
Topic: Make popups consistent with the start menu
Replies: 1
Views: 2934

Re: Make popups consistent with the start menu

Thanks for your suggestions - will be put on the wish list. ;)
by Tom
Jul 22nd, ’19, 06:24
Forum: User Commands and Scripts
Topic: How to trim extra space when selecting text?
Replies: 17
Views: 15255

Re: How to trim extra space when selecting text?

The script assumes the words.txt file is in the FastKeys folder. To change this, change the first line of the code to the full path to your file.
by Tom
Jul 19th, ’19, 15:39
Forum: User Commands and Scripts
Topic: How to trim extra space when selecting text?
Replies: 17
Views: 15255

Re: How to trim extra space when selecting text?

It depends on your needs. Here is a quick example how you could do it using simple delimited text file. The following script checks if the selected word already exists in the list - if yes, it shows the translation, if not, it adds it to the end of the list and opens notepad where you can continue e...
by Tom
Jul 18th, ’19, 19:59
Forum: User Commands and Scripts
Topic: How to trim extra space when selecting text?
Replies: 17
Views: 15255

Re: How to trim extra space when selecting text?

You could make a shortcut (Type: Command). Send, ^c Sleep, 200 Clipboard=%Clipboard% Use this shortcut instead of Ctrl+C. Double-click the word to select it and then press a shortcut - the selection is copied to clipboard without unwanted spaces and formatting. I would further improve the script to ...
by Tom
Jul 17th, ’19, 22:08
Forum: User Commands and Scripts
Topic: How to trim extra space when selecting text?
Replies: 17
Views: 15255

Re: How to trim extra space when selecting text?

What do you want to do with the selected text?
by Tom
Jul 17th, ’19, 22:07
Forum: General Discussion
Topic: Question: replace illegal characters in a file name
Replies: 7
Views: 2606

Re: Question: replace illegal characters in a file name

Why can't you define the selections to not contain illegal characters?
by Tom
Jun 19th, ’19, 08:10
Forum: General Discussion
Topic: Macro > Input Selection Form > CheckBox > Is there a character limit to the "Selections" section?
Replies: 3
Views: 1164

Re: Macro > Input Selection Form > CheckBox > Is there a character limit to the "Selections" section?

Currently CheckBox is the only control which does not support description labels.
The limit should be around 1000 characters per selection - how long are your selections?

You can also send your example file to our support mail and we will check.
by Tom
Jun 18th, ’19, 10:35
Forum: General Discussion
Topic: New Line in "Checkbox" Macro
Replies: 2
Views: 993

Re: New Line in "Checkbox" Macro

Hi Melanie, use `n for a new line.