Search found 791 matches

by Tom
Sep 10th, ’19, 11:53
Forum: General Discussion
Topic: Code Snippets
Replies: 1
Views: 985

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: 3453

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: 6684

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: 2429

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...
by Tom
Aug 29th, ’19, 19:05
Forum: Suggestions
Topic: Te for shutdown
Replies: 6
Views: 5225

Re: Te for shutdown

Tom wrote: Aug 29th, ’19, 11:48Shutdown is a Dos command - change it as you like: https://www.computerhope.com/shutdown.htm
by Tom
Aug 29th, ’19, 11:48
Forum: Suggestions
Topic: Te for shutdown
Replies: 6
Views: 5225

Re: Te for shutdown

There is nothing to be fixed in FastKeys.
Shutdown is a Dos command - change it as you like: https://www.computerhope.com/shutdown.htm
by Tom
Aug 24th, ’19, 20:20
Forum: User Commands and Scripts
Topic: Some tweaks with ESCAPE key
Replies: 4
Views: 5090

Re: Some tweaks with ESCAPE key

Shortcut: Space (with $-Hook option)

Code: Select all

Send {Space}
KeyWait, Space, T0.6    ; 0.6 msec
If ErrorLevel
{
    WinGetTitle, Title, A 
    WinHide, A
    KeyWait, Space
    WinShow, %Title%
}
by Tom
Aug 23rd, ’19, 11:37
Forum: User Commands and Scripts
Topic: Some tweaks with ESCAPE key
Replies: 4
Views: 5090

Re: Some tweaks with ESCAPE key

Good idea.
Shortcut: Escape (with hook option)

Code: Select all

WinGetTitle, Title, A 
WinHide, A
KeyWait, Esc
WinShow, %Title%
by Tom
Aug 8th, ’19, 23:07
Forum: General Discussion
Topic: type command
Replies: 3
Views: 1677

Re: type command

What would you like to do?