Search found 796 matches

by Tom
Jun 1st, ’21, 18:08
Forum: General Discussion
Topic: Automatic line breaks after 50 characters?
Replies: 6
Views: 4014

Re: Automatic line breaks after 50 characters?

How about this? width:=50 send, ^c sleep 100 text:="" loop, parse, clipboard, `n, `r { i:=A_Index if (StrLen(A_LoopField)>width) { spos:=1 loop { k:=SubStr(A_LoopField, spos, width) if (StrLen(k)=0) break epos:=InStr(k, " ",, 0) if (epos=0) or (StrLen(k)<width) epos:=50 k:=SubStr...
by Tom
May 31st, ’21, 15:20
Forum: Suggestions
Topic: send rich text not working
Replies: 8
Views: 10439

Re: send rich text not working

We will do our best but cannot promise it. What do you mean by macro processing?
by Tom
May 31st, ’21, 15:18
Forum: General Discussion
Topic: Automatic line breaks after 50 characters?
Replies: 6
Views: 4014

Re: Automatic line breaks after 50 characters?

Your request was not clear. I corrected the script to only format the lines longer than 50 characters. send, ^c sleep 100 text:="" loop, parse, clipboard, `n { if (StrLen(A_LoopField>50)) { loop, parse, A_LoopField { k:=A_LoopField If (Mod(A_Index, 50) = 0) text := text k "`n" El...
by Tom
May 31st, ’21, 11:56
Forum: General Discussion
Topic: Automatic line breaks after 50 characters?
Replies: 6
Views: 4014

Re: Automatic line breaks after 50 characters?

Sure. Create a shortcut with the script below (Type: Command). It will copy the selected text to clipboard and replace it with the formatted text. send, ^c sleep 200 text:="" loop, parse, clipboard { If (Mod(A_Index, 50) = 0) text := text A_LoopField "`n" Else text := text A_Loop...
by Tom
May 31st, ’21, 11:26
Forum: Suggestions
Topic: send rich text not working
Replies: 8
Views: 10439

Re: send rich text not working

Gmail uses a different rich text format. Could you try in MS Word or other application?
by Tom
May 19th, ’21, 21:16
Forum: General Discussion
Topic: Share the Same Selection Form Name
Replies: 1
Views: 1985

Re: Share the Same Selection Form Name

You could set the form as a separate item and then use Insert Another Item macro.
:?:
by Tom
May 19th, ’21, 21:10
Forum: General Discussion
Topic: Can a "FastPaste" equivalent be created in FastKeys?
Replies: 17
Views: 8485

Re: Can an "FastPaste" equivalent be created in FastKeys

Interesting ideas, thanks. We may think if it would be possible to provide something similar in the future.
But it's a matter of preference - in FastKeys you simply copy all the data to the clipboard and then press a shortcut to select the needed entry.
by Tom
May 19th, ’21, 20:51
Forum: General Discussion
Topic: Selection Form with Multiple Line
Replies: 5
Views: 3922

Re: Selection Form with Multiple Line

Sure, you can use a ¶ character or {Enter} for a new line.

Bank Name 1::Bank Address{Enter}Bank Account No.{Enter}Bank Contact No.
Bank Name 2::Bank Address¶Bank Account No.¶Bank Contact No.
by Tom
May 19th, ’21, 20:46
Forum: General Discussion
Topic: silent install
Replies: 1
Views: 1954

Re: silent install

The following optional command line parameters can be used with the provided FastKeys installer: /SP - Disables the This will install... Do you wish to continue? prompt at the beginning of Setup. /SILENT - Instructs Setup to be silent. When Setup is silent the wizard and the background window are no...
by Tom
May 19th, ’21, 20:44
Forum: General Discussion
Topic: Can Autocomplete also have multiple strings that trigger it?
Replies: 1
Views: 1883

Re: Can Autocomplete also have multiple strings that trigger it?

You could enable "Include words containing the string" option in Preferences/Auto Complete and then set the string containing multiple words.

Also, check Tools/User variables for settings some personal data like emails etc. which can then be used in different phrases.