Search found 791 matches

by Tom
Feb 17th, ’20, 10:32
Forum: General Discussion
Topic: Reversing text selection or clipboard
Replies: 6
Views: 1879

Re: Reversing text selection or clipboard

Code: Select all

result:=""
Loop Parse, Clipboard, `n, `r
	result := A_LoopField "`n" result
Clipboard:=Result
:?:
by Tom
Feb 15th, ’20, 21:52
Forum: General Discussion
Topic: Reversing text selection or clipboard
Replies: 6
Views: 1879

Re: Reversing text selection or clipboard

Code: Select all

Loop Parse, Clipboard, `n, `r
	result := A_LoopField "`n" result
Clipboard:=Result
by Tom
Feb 15th, ’20, 17:19
Forum: General Discussion
Topic: Reversing text selection or clipboard
Replies: 6
Views: 1879

Re: Reversing text selection or clipboard

Sort command sorts the items in alphabetical order so the result is ok.

If you want to reverse the lines order then somethig like this should work:

Code: Select all

Loop Parse, Clipboard, `n, `r
	result := A_LoopField "`n" result
Msgbox, % result
by Tom
Feb 12th, ’20, 10:12
Forum: General Discussion
Topic: After clicking start menu, Fastkeys isn't focusing the background app to run the expected command
Replies: 4
Views: 2501

Re: After clicking start menu, Fastkeys isn't focusing the background app to run the expected command

After running your command from the start menu, I get the focus on Chrome search field.
Also, you should use if instead of #if.
by Tom
Feb 12th, ’20, 09:56
Forum: General Discussion
Topic: Issue for running applications under %A_Appdata%
Replies: 2
Views: 1462

Re: Issue for running applications under %A_Appdata%

The second one works for me.
In the first one you should use %A_UserName%.
by Tom
Feb 12th, ’20, 09:54
Forum: Suggestions
Topic: COM error
Replies: 1
Views: 2760

Re: COM error

Try restarting the computer. Or run FastKeys as administrator.
by Tom
Feb 8th, ’20, 13:36
Forum: General Discussion
Topic: Is it possible to position the mouse cursor where text cursor is?
Replies: 6
Views: 1956

Re: Is it possible to position the mouse cursor where text cursor is?

It should work in majority of windows. However, caret position cannot be recognized in some applications and browsers (Windows limitation).
by Tom
Feb 6th, ’20, 17:33
Forum: General Discussion
Topic: ListBox Macro
Replies: 1
Views: 932

Re: ListBox Macro

Have you accidentally changed the macro name (SELECT_name)? Have you changed the type of the command (should be Send)?
Could you try entering the macro again?
by Tom
Jan 31st, ’20, 20:26
Forum: General Discussion
Topic: Any way to prevent FK from executing other macros?
Replies: 14
Views: 2551

Re: Any way to prevent FK from executing other macros?

It is impossible to say without seeing your settings.
You can send your Settings files to our support mail with the steps to reproduce your issue and we will try to help.