Search found 70 matches

by Ennovy
Feb 14th, ’22, 15:37
Forum: General Discussion
Topic: Open password protected software
Replies: 4
Views: 730

Open password protected software

Hi, Let's say I want to start Thunderbird, which is password protected. When I give the password followed by the <ENTER> key I get a message that the password is not correct. When I give the password followed bij clicking OK with the mouse the password is accepted. How can I prevent this? Because it...
by Ennovy
Nov 4th, ’19, 15:17
Forum: User Commands and Scripts
Topic: Use Capslock key as a hotkey
Replies: 0
Views: 5963

Use Capslock key as a hotkey

I use this script daily. Source: https://www.autohotkey.com/boards/viewtopic.php?f=7&t=20661&hilit=capslock+modifier The following is a simple script that starts with the holding down of either Caps, Num, or Scroll-lock and the pressing of another key or mouse press to do basically, anything...
by Ennovy
Dec 8th, ’16, 09:00
Forum: Suggestions
Topic: "switch" to google chrome instead of start 2nd instance
Replies: 3
Views: 3411

Re: "switch" to google chrome instead of start 2nd instance

ChrisKey wrote: I use something like this... THEapp:="Total Commander" IfWinExist, %THEapp% IfWinNotActive WinActivate else { WinGet, numCountWindows, Count, %THEapp% if (numCountWindows>1) { ;more than one open window -> cycle WinGetClass, ActiveClass, A WinSet, Bottom,, A WinActivate, ...
by Ennovy
Jul 28th, ’16, 14:08
Forum: Suggestions
Topic: Clipboard manager - clear all
Replies: 2
Views: 2653

Re: Clipboard manager - clear all

Marko wrote: 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. Thanks Marko, I did not think of that option....
by Ennovy
Jul 28th, ’16, 07:58
Forum: Suggestions
Topic: Clipboard manager - clear all
Replies: 2
Views: 2653

Clipboard manager - clear all

In my preferences the clipboard history size is set to : 20 My questions: 1. All data copied to the clipboard is kept only in memory or also in a file (couldn't find one)? 2. Sometimes I need to clear all (or some) of these entries. Is there an easy way for you to add this option to FK? Right click ...
by Ennovy
Jul 4th, ’16, 17:01
Forum: Announcements
Topic: FastKeys 3.11 Released
Replies: 4
Views: 6174

Re: FastKeys 3.11 Released

gustms wrote:
Thank you, Marko! FastKeys gets better and better everyday.
I totally agree :)
by Ennovy
Jan 18th, ’16, 08:29
Forum: General Discussion
Topic: How to limit a shortcut to a specific program/window?
Replies: 3
Views: 2790

Re: How to limit a shortcut to a specific program/window?

You might want to read this: https://autohotkey.com/docs/commands/_IfWinActive.htm
To create a command that only works in Sketchup

The other way around:
You can also create a command that works everywhere but not in for instance Total Commander:
by Ennovy
Nov 25th, ’15, 09:33
Forum: Announcements
Topic: FastKeys 3.05 Released
Replies: 4
Views: 5790

Re: FastKeys 3.05 Released

Thanks Marko, great news :D
by Ennovy
Jul 6th, ’15, 16:28
Forum: General Discussion
Topic: Delete files AND folders older then 7 days
Replies: 2
Views: 2725

Re: Delete files AND folders older then 7 days

Thank you Marko for your information :!: I want to cleanup my Temp folder once a week and I presume that files older then one week are no longer needed and can be safely erased. Good idea to make a seperate loop for the removal of empty folders. FastKeys and AHK are such great tools :D Have a nice d...
by Ennovy
Jul 6th, ’15, 11:52
Forum: General Discussion
Topic: Delete files AND folders older then 7 days
Replies: 2
Views: 2725

Delete files AND folders older then 7 days

Hi Marko In the AHK forum I found a script that enables me to delete files older then 7 days (not tested yet) StringLeft, Now_Date, A_Now, 8 ; Loop, %TEMP%\* { StringLeft, File_date, A_LoopFileTimeCreated, 8 If (Now_Date - File_date >= 7) FileDelete, %A_LOOPFILEFULLPATH% ; FileRecycle, %A_LOOPFILEFU...