Search found 1726 matches

by Marko
Sep 9th, ’16, 22:15
Forum: General Discussion
Topic: right-click not working when Fastkeys active
Replies: 2
Views: 2332

Re: right-click not working when Fastkeys active

Hm, right click is a default mouse gestures key. Could you disable gestures module to see if this helps?

The issue might be caused by some specific Windows setting combination or conflicting application.
by Marko
Sep 3rd, ’16, 23:39
Forum: Announcements
Topic: FastKeys 3.12 Released
Replies: 6
Views: 6902

Re: FastKeys 3.12 Released

You are welcome! :D
by Marko
Sep 3rd, ’16, 18:13
Forum: Announcements
Topic: FastKeys 3.12 Released
Replies: 6
Views: 6902

FastKeys 3.12 Released

What's new in FastKeys 3.12:
September 3, 2016

- Enable/disable multiple entries from the context menu,
- Spanish common words Wordlist added, thanks Salva!
- Language translation updates, thanks sm85!
- General improvements and bug fixes.

Download FastKeys HERE!
by Marko
Sep 1st, ’16, 21:36
Forum: General Discussion
Topic: Text Expander and Shortcuts not working in Visual Studio
Replies: 4
Views: 2305

Re: Text Expander and Shortcuts not working in Visual Studio

Hi Steve, it sounds like you are having administrative privileges issue. Try running VS and FastKeys as Admin.

You could also try setting the "Run as administrator" option in Preferences/Functions.
by Marko
Sep 1st, ’16, 08:59
Forum: General Discussion
Topic: Command to create a new .txt with the name of selected file?
Replies: 6
Views: 2779

Re: Command to create a new .txt with the name of selected file?

sorry my bad...

Code: Select all

Clipboard:=""
Send ^c
ClipWait, 1
SplitPath, Clipboard,, dir,, name
FileAppend,, %dir%\%name%_cmt.txt
by Marko
Aug 31st, ’16, 23:28
Forum: General Discussion
Topic: Command to create a new .txt with the name of selected file?
Replies: 6
Views: 2779

Re: Command to create a new .txt with the name of selected file?

Try this, a message should show copied file path. Experiment with sleep length. Any luck?

Code: Select all

Clipboard:=""
Send ^c
ClipWait, 1
Sleep, 1000
MsgBox, % Clipboard
SplitPath, Clipboard,,,, name
FileAppend,, %name%_cmt.txt
by Marko
Aug 30th, ’16, 22:35
Forum: General Discussion
Topic: Command to create a new .txt with the name of selected file?
Replies: 6
Views: 2779

Re: Command to create a new .txt with the name of selected file?

Something like this? Create a shortcut with the following command:

Code: Select all

Clipboard:=""
Send ^c
ClipWait, 1
SplitPath, Clipboard,,,, name
FileAppend,, %name%_cmt.txt
by Marko
Aug 9th, ’16, 23:31
Forum: User Commands and Scripts
Topic: Date Stamp with GUI Script
Replies: 6
Views: 7304

Re: Date Stamp with GUI Script

yes, easy. Create a shortcut (or any other module), Type: Command

Code: Select all

FormatTime, MyDate, , yyMMdd-HHmm
FileCreateDir, % MyDate
Msgbox, Folder %MyDate% created.
https://autohotkey.com/docs/commands/FormatTime.htm
by Marko
Jul 28th, ’16, 13:38
Forum: Suggestions
Topic: Clipboard manager - clear all
Replies: 2
Views: 2657

Re: Clipboard manager - clear all

Hi Ennovy, clipboard data is only kept in memory and the easiest way to clear all entries is to reload FastKeys - you can even create a shortcut for this in Preferences/General/Shortcuts.

We may be expanding the options in future releases.
by Marko
Jul 27th, ’16, 23:23
Forum: General Discussion
Topic: Russian translation - updated
Replies: 5
Views: 2257

Re: Russian translation - updated

Thanks, it is so nice to hear from you after a long time. :D Thanks for your great contributions. Updated translation will be available with the next version release.