Search found 796 matches

by Tom
Oct 16th, ’19, 20:34
Forum: General Discussion
Topic: Conditional Open App
Replies: 8
Views: 2099

Re: Conditional Open App

Shortcut: F11
Type: Command

Code: Select all

If Not WinExist("ahk_exe chrome.exe")
	Run, chrome.exe
Else
	WinActivate, ahk_exe chrome.exe
by Tom
Oct 3rd, ’19, 06:48
Forum: General Discussion
Topic: How to create fastkey for accented foreign characters
Replies: 1
Views: 688

Re: How to create fastkey for accented foreign characters

Create a new Shortcut: Alt+N
Type: Send
Command: ñ

and another: Alt+Shift+N
Type: Send
Command: Ñ
by Tom
Sep 25th, ’19, 11:30
Forum: General Discussion
Topic: Pasting into one line, but with a space whenever an enter is present
Replies: 2
Views: 1011

Re: Pasting into one line, but with a space whenever an enter is present

Code: Select all

StringReplace, string, string, `n, %A_Space%, A
StringReplace, string, string, `r, %A_Space%, A
;)
by Tom
Sep 10th, ’19, 11:54
Forum: Suggestions
Topic: "Help"-button in tray links to 404
Replies: 1
Views: 2776

Re: "Help"-button in tray links to 404

Thanks, will be corrected. ;)
by Tom
Sep 10th, ’19, 11:53
Forum: General Discussion
Topic: Code Snippets
Replies: 1
Views: 990

Re: Code Snippets

Fastkeys sends the characters exactly as you would type them on the keyboard. You editor may introduce some automatic indents and closing braces. It this is so, remove the closing brace. Try in Notepad to see the difference. Instead of putting special characters in braces, like {{} etc., you can use...
by Tom
Sep 4th, ’19, 11:08
Forum: Suggestions
Topic: FastKeys window does Not Maximize on 4k Monitor
Replies: 3
Views: 3462

Re: FastKeys window does Not Maximize on 4k Monitor

You can change the main window height. You can also can also change the size of the editing window as you like.
by Tom
Sep 4th, ’19, 11:02
Forum: Suggestions
Topic: Duplicate entries in different submenus
Replies: 8
Views: 6697

Re: Duplicate entries in different submenus

Thanks, we will consider the suggestion.
by Tom
Sep 4th, ’19, 10:58
Forum: Suggestions
Topic: rtf not working within any browser or outlook
Replies: 1
Views: 2437

Re: rtf not working within any browser or outlook

Unfortunately not all on-line rich text editors follow the same standards. Most of them accept Html perfectly fine while Rich text may be an issue with many. To overcome this try the following alternatives: - use non-formatted text with "Insert Image" macro (More/Macros...) - prepare rtf f...