Search found 1730 matches

by Marko
Jul 10th, ’15, 01:06
Forum: Suggestions
Topic: Cannot create entries
Replies: 3
Views: 2627

Re: Cannot create entries

Could you send me a settings.ini files from your backup folder (Documents/FastKeys/FastKeys Backup) for the inspection? Thanks.
by Marko
Jul 9th, ’15, 20:32
Forum: Suggestions
Topic: Cannot create entries
Replies: 3
Views: 2627

Re: Cannot create entries

Did you press Save button after creating new item?
by Marko
Jul 9th, ’15, 20:25
Forum: Announcements
Topic: FastKeys 3.01 Released
Replies: 3
Views: 4829

Re: FastKeys 3.01 Released

In the Library window (press Library button) there is an search box on the top left corner. You can also click on the search icon to define where to search.
by Marko
Jul 6th, ’15, 16:09
Forum: General Discussion
Topic: Delete files AND folders older then 7 days
Replies: 2
Views: 2739

Re: Delete files AND folders older then 7 days

Hi, not tested but it should be something like this (based on your method): StringLeft, Now_Date, A_Now, 8 Loop, %TEMP%\*, 1, 1 { StringLeft, File_date, A_LoopFileTimeCreated, 8 If (Now_Date - File_date >= 7) { If InStr(A_LoopFileAttrib, "D") ;is folder? FileDelete, %A_LoopFileFullPath% El...
by Marko
Jun 21st, ’15, 11:01
Forum: Suggestions
Topic: I can't get it to work properly in chrome
Replies: 2
Views: 2106

Re: I can't get it to work properly in chrome

Hi Eric, this was tested on our several computer setups with Chrome and it works fine. Do you use any specific settings? What exactly happens? It continues to work with other modules/applications? You can also send me an email with more details and I will try to help. It is a known issue that the ca...
by Marko
Jun 19th, ’15, 19:57
Forum: Suggestions
Topic: Increase number of Text Expander phrase file abbreviations
Replies: 2
Views: 2230

Re: Increase number of Text Expander phrase file abbreviations

Hi gustms, no problem, very simple fix. Thanks for your suggestion. ;)
by Marko
Jun 19th, ’15, 10:07
Forum: Suggestions
Topic: Autocompletion bug — Polish characters
Replies: 2
Views: 2037

Re: Autocompletion bug — Polish characters

thanks for reporting this. For Auto Complete to work properly you need to first set an input language to Polish and switch language to PL and then restart FastKeys (!). Also go to Preferences/Auto Complete and add not recognized letters into Special characters field. I hope this works for you. I wil...
by Marko
Jun 17th, ’15, 22:50
Forum: Suggestions
Topic: Menuitem Open folder messes up the contens
Replies: 1
Views: 1778

Re: Menuitem Open folder messes up the contens

Hi Marc,

you are probably having command with a link to a folder and not a real folder. Try selecting a folder using an Open button.

If this wouldn't work you can send me a mail and I'll try to help.
by Marko
Jun 15th, ’15, 12:42
Forum: General Discussion
Topic: Creating shortcut to software button without fixed position
Replies: 3
Views: 2392

Re: Creating shortcut to software button without fixed position

You could try one of these (Type=Command): ControlClick, QWidget4, A ;or ControlClick, x30 y50, A Both are standard AutoHotkey commands. First clicks the control defined by it's class name (QWidget4) and second by control position in window. I used Window Spy script to find control class names or po...