Search found 796 matches

by Tom
Jul 12th, ’21, 20:38
Forum: General Discussion
Topic: search specific word
Replies: 2
Views: 5270

Re: search specific word

Try

Code: Select all

SaveClip := ClipboardAll
Clipboard := ""
Send ^{vk43} ;Ctrl C
ClipWait 1
Word := Clipboard
Clipboard := SaveClip
SaveClip := ""
Run, https://www.wordreference.com/fren/%Word%
by Tom
Jul 12th, ’21, 20:37
Forum: General Discussion
Topic: Pop up scroll with multiple monitors
Replies: 1
Views: 4427

Re: Pop up scroll with multiple monitors

I tested it on our monitor configurations and it works as expected. Could you please contact our mail support for a specific help?
by Tom
Jun 30th, ’21, 10:52
Forum: Suggestions
Topic: Start menu?
Replies: 1
Views: 5072

Re: Start menu?

A plus icon is used to add a new item to the menu.
To create a new menu, you need to add a new tab by right-clicking on any tab and select "New tab". Sorry if this is confusing. :D
by Tom
Jun 24th, ’21, 11:46
Forum: General Discussion
Topic: In MS Word automate Find and Replace function
Replies: 3
Views: 6029

Re: In MS Word automate Find and Replace function

Another way would be to use this script which replaces all hard returns in the selected text with spaces. Set it as a Shortcut (Type: Command). Send, ^c Sleep 100 StringReplace, clipboard, clipboard, `r`n`r`n, |, All StringReplace, clipboard, clipboard, `r`n, %A_Space%, All StringReplace, clipboard,...
by Tom
Jun 24th, ’21, 11:27
Forum: General Discussion
Topic: Why this macro not working in MS Word 2016
Replies: 2
Views: 4412

Re: Why this macro not working in MS Word 2016

If I understand correctly, the ^p is literal so ^ it needs to be enclosed in braces.

Code: Select all

Send, ^h{^}p{Tab} !a{Right}{Enter}{Escape}^j
If still not working, you may need to introduce short pauses between the steps.

Code: Select all

Send, ^h
Sleep, 20
;etc
by Tom
Jun 24th, ’21, 11:11
Forum: General Discussion
Topic: 'Countdown Timer Big' but for minutes
Replies: 2
Views: 2680

Re: 'Countdown Timer Big' but for minutes

The original script changes the count each second using a timer. The only thing you would need is to change the time from one second to 60 seconds:

Code: Select all

SetTimer, ShowTimerCD, 60000
by Tom
Jun 18th, ’21, 14:26
Forum: General Discussion
Topic: calculating math
Replies: 1
Views: 2072

Re: calculating math

The simplest is to use the following code (Type: Command):

Code: Select all

InputBox, InputNum,, Price:,, 200, 120
MsgBox % "Price with 10% discount: " Round(InputNum*0.9, 2)
You can also use Manual Input macro, Calculation macro etc. We'll be releasing a new update with the Message Box macro in few days.
by Tom
Jun 11th, ’21, 17:27
Forum: General Discussion
Topic: Notepad++ and Text Expander
Replies: 1
Views: 1920

Re: Notepad++ and Text Expander

It works in any application. Try to reset your Preferences.
by Tom
Jun 10th, ’21, 10:06
Forum: General Discussion
Topic: Pop Up Screen
Replies: 1
Views: 2092

Re: Pop Up Screen

In normal applications, using “Below the caret” setting should be the one to use. In browsers, the caret position cannot be determined (system limitation) therefore you are able to set the alternative position. Have you tried “Centered”?
by Tom
Jun 2nd, ’21, 15:47
Forum: User Commands and Scripts
Topic: Problem with emoji in Macro inserting data
Replies: 4
Views: 7665

Re: Problem with emoji in Macro inserting data

vinidlidoo wrote: Jun 1st, ’21, 01:53 When I use my Text Expander string to trigger it, it comes out garbled:
..
、扨eeting Notes
Try saving your txt file using "UTF-8 with BOM" encoding.