Search found 796 matches

by Tom
Mar 12th, ’19, 20:41
Forum: Suggestions
Topic: show ac at text and spacing
Replies: 11
Views: 9602

Re: show ac at text and spacing

I cannot reproduce it - please give more detailed explanation, what you do exactly, step by step, what happens, what is the expected result?
by Tom
Mar 12th, ’19, 20:36
Forum: User Commands and Scripts
Topic: Endless mouse
Replies: 22
Views: 64143

Re: Endless mouse

You can use a A_ScreenWidth variable (width of primary monitor) instead of fixed numbers.
by Tom
Mar 11th, ’19, 14:43
Forum: User Commands and Scripts
Topic: Insert random quote
Replies: 2
Views: 4855

Re: Insert random quote

Two ways: 1. Add a new item, select Type: Send, select "More... button/Macros/Input selection form" and copy the lines from your file to Selections field. 2. Use the script which reads the data from your file. Select Type: Command, copy the following script into the Command field: FileRead...
by Tom
Mar 11th, ’19, 14:12
Forum: General Discussion
Topic: Problem with +number input
Replies: 2
Views: 1464

Re: Problem with +number input

Disable option "Enable modifiers" in Preferences/Text Expander or put + in braces, like {+}358...
by Tom
Mar 10th, ’19, 19:48
Forum: General Discussion
Topic: Pasting text within characters
Replies: 4
Views: 2037

Re: Pasting text within characters

Code: Select all

Send, % "*" clip "*"
by Tom
Mar 9th, ’19, 15:59
Forum: General Discussion
Topic: Ctrl + Shift + Alt +/Shift + Ctrl + Alt + issue
Replies: 4
Views: 1829

Re: Ctrl + Shift + Alt +/Shift + Ctrl + Alt + issue

OK, we will make this more consistent in the next release.
by Tom
Mar 9th, ’19, 09:31
Forum: General Discussion
Topic: FastKeys preventing "v"
Replies: 6
Views: 2263

Re: FastKeys preventing "v"

Can you please send us your settings.fdb (or other fdb file you use) file to our support mail - we can then check what might the reason for this behavior on your computer.
by Tom
Mar 8th, ’19, 23:47
Forum: General Discussion
Topic: FastKeys preventing "v"
Replies: 6
Views: 2263

Re: FastKeys preventing "v"

Try resetting the Preferences to defaults. Which language/keyboard settings do you use?
by Tom
Mar 8th, ’19, 23:16
Forum: General Discussion
Topic: Some commands/macros won't execute via Quick Find
Replies: 3
Views: 1604

Re: Some commands/macros won't execute via Quick Find

Thanks, we will try to resolve this in the next release.
by Tom
Mar 8th, ’19, 23:09
Forum: General Discussion
Topic: Pasting text within characters
Replies: 4
Views: 2037

Re: Pasting text within characters

Some editors treat `r`n (CR FF) as one break, others as two. Try this:

Code: Select all

clip:=clipboard
StringReplace, clip, clip, `r`n, `n, All
Send, % clip 
return