Search found 796 matches

by Tom
Feb 12th, ’21, 17:05
Forum: User Commands and Scripts
Topic: Find and replace accented characters
Replies: 7
Views: 10027

Re: Find and replace accented characters

This replaces all spaces and dots in selected string to underscores ("_").

Code: Select all

Clipboard:=""
Send, ^c
ClipWait
string:=clipboard
stringreplace, string, string, %A_Space%, _, all
stringreplace, string, string, ., _, all
SendInput, % string
return
by Tom
Feb 12th, ’21, 16:45
Forum: Suggestions
Topic: FastKeys 5 color themes
Replies: 4
Views: 4283

Re: FastKeys 5 color themes

Currently the possibilities are limited, you cannot change the font color on the right.
by Tom
Feb 12th, ’21, 16:44
Forum: Suggestions
Topic: Settings.fdb
Replies: 2
Views: 2781

Re: Settings.fdb

You can run your fdb file from any location. Use File/Save as... and File/Open to load it.
Location of the settings.ini file cannot be changed.
by Tom
Feb 8th, ’21, 12:31
Forum: General Discussion
Topic: windows impossible to maximize
Replies: 4
Views: 2745

Re: windows impossible to maximize

Thanks, we will try to correct this. What are the details of your smallest monitor - resolution, scaling?
by Tom
Feb 7th, ’21, 19:16
Forum: General Discussion
Topic: windows impossible to maximize
Replies: 4
Views: 2745

Re: windows impossible to maximize

Can you please reproduce the issue step by step? Thanks.
by Tom
Feb 7th, ’21, 18:51
Forum: General Discussion
Topic: Date in local language
Replies: 4
Views: 3774

Re: Date in local language

Check Date and Time macro to freely format the date.
For built-in variables like %A_MMMM% FastKeys uses a Windows system setting.
by Tom
Feb 7th, ’21, 18:48
Forum: General Discussion
Topic: menu icon file specs
Replies: 6
Views: 4034

Re: menu icon file specs

Most web page links should display the icon automatically. For others you can specify any file containing the icon (exe, ico etc.).
by Tom
Feb 7th, ’21, 18:45
Forum: General Discussion
Topic: probem with my key access
Replies: 1
Views: 2400

Re: probem with my key access

More information:
https://fastkeysautomation.com/version5.html

You are not forced to upgrade, you can continue using version 4 without any issue.
by Tom
Feb 7th, ’21, 10:38
Forum: User Commands and Scripts
Topic: Trigger ctrl+w with a right clic
Replies: 4
Views: 7045

Re: Trigger ctrl+w with a right clic

Shortcut: RButton
Type: Command

Code: Select all

KeyWait, RButton, T0.6    ; 0.6 msec
If ErrorLevel
  Send ^w
Else
  Send {Rbutton}
Window: ahk_class MozillaWindowClass
by Tom
Feb 7th, ’21, 09:41
Forum: General Discussion
Topic: Accessing Clipboard Manager contents
Replies: 8
Views: 5121

Re: Accessing Clipboard Manager contents

No, currently not possible.