Search found 837 matches

by Tom
Sep 13th, ’24, 15:47
Forum: Suggestions
Topic: Clipboard Manager Hotkey
Replies: 4
Views: 776

Re: Clipboard Manager Hotkey

I tried on two different computers and Clipboard shortcut setting in Preferences was saved correctly for me.

Another way to disable Clipboard Manager is to set the History size to 0.
by Tom
Sep 10th, ’24, 09:39
Forum: Suggestions
Topic: Shortcut Open Clipboard Manager
Replies: 1
Views: 66

Re: Shortcut Open Clipboard Manager

A separate shortcut for a Clipboard Manager will be available in the next release, planned for September. Thanks for your patience.
by Tom
Sep 3rd, ’24, 18:42
Forum: General Discussion
Topic: If Conditions
Replies: 2
Views: 80

Re: If Conditions

I would set three if conditions (with no "else") in the same line: A_Hour>0 and A_Hour<12 - Guten Morgen A_Hour>12 and A_Hour<18 - Guten Tag A_Hour>18 and A_Hour<24 - Guten Abend %IF_Morgen% Guten Morgen %END%%IF_Tag% Guten Tag %END%%IF_Abend% Guten Abend %END% Conditions tutorial: https:/...
by Tom
Sep 2nd, ’24, 21:09
Forum: Suggestions
Topic: Extraction data from Google Sheet
Replies: 3
Views: 111

Re: Extraction data from Google Sheet

No, sorry.
by Tom
Sep 2nd, ’24, 11:19
Forum: Suggestions
Topic: Extraction data from Google Sheet
Replies: 3
Views: 111

Re: Extraction data from Google Sheet

FastKeys currently supports the extracts from Microsoft Office and from accessible text files, for example network or cloud synced files.
by Tom
Aug 30th, ’24, 15:03
Forum: General Discussion
Topic: Text Expansion gone wonky, after years of use
Replies: 1
Views: 94

Re: Text Expansion gone wonky, after years of use

There are two possibilities: - you changed something in the phrase (I see many Code macros etc.) - check it out or Use File/Restore backup to go back to one of the previous settings. - the editor has issues to catch fast key sending. Try to introduce a short Key Delay in Preferences/Text Expander/Ad...
by Tom
Aug 30th, ’24, 09:31
Forum: User Commands and Scripts
Topic: Remove line breaks
Replies: 10
Views: 6880

Re: Remove line breaks

? Clipboard:="" Send, ^c ClipWait string:=clipboard stringreplace, string, string, `r`n`r`n, ♥, all stringreplace, string, string, `r`n, %A_Space%, all stringreplace, string, string, ♥, `n`n, all Loop { StringReplace, string, string, %A_Space%%A_Space%, %A_Space%, UseErrorLevel if ErrorLev...
by Tom
Aug 30th, ’24, 09:20
Forum: Suggestions
Topic: Feature Request : exclude window
Replies: 2
Views: 268

Re: Feature Request : exclude window

Thanks, we'll add it to the wish list.
Can you describe a scenario where this would be useful?
by Tom
Aug 30th, ’24, 09:15
Forum: General Discussion
Topic: Create survey in whatsapp
Replies: 1
Views: 62

Re: Create survey in whatsapp

Have you checked our video tutorials?
https://fastkeysautomation.com/videos.html#ma
by Tom
Aug 30th, ’24, 09:10
Forum: General Discussion
Topic: CSS Reset Expansion Refusing To Work
Replies: 1
Views: 44

Re: CSS Reset Expansion Refusing To Work

/* is also a comment in FastKeys. You need to escape it, like this:

Code: Select all

`/`* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}