Search found 1719 matches

by Marko
Sep 15th, ’16, 00:06
Forum: General Discussion
Topic: Autocomplete not working in text field in chrome
Replies: 3
Views: 1625

Re: Autocomplete not working in text field in chrome

Maybe it is a focus problem? What if you click on the field before entering the data?

Could you find any other publicly accessible page with this issue?
by Marko
Sep 14th, ’16, 19:50
Forum: General Discussion
Topic: Autocomplete not working in text field in chrome
Replies: 3
Views: 1625

Re: Autocomplete not working in text field in chrome

Does it work in other browsers? Is Text expanding working in the same field?

Could you give me a direct link to the page that I can test?
by Marko
Sep 14th, ’16, 13:53
Forum: General Discussion
Topic: Some sentences aren't listed by auto complete
Replies: 1
Views: 1199

Re: Some sentences aren't listed by auto complete

I tested and it works for me. Could you double-check your settings?

You can also send me your files and I can take a look.
by Marko
Sep 9th, ’16, 22:15
Forum: General Discussion
Topic: right-click not working when Fastkeys active
Replies: 2
Views: 2330

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

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

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

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