Search found 34 matches

by lehmakommionu
Jun 1st, ’17, 02:03
Forum: General Discussion
Topic: Very long commands won't save
Replies: 1
Views: 1387

Very long commands won't save

Hi,

It seems that when command is very long, FastKeys doesn't save the command and just replaces everything with a random shortcut (most recently it was +{F2} ). It seems the limit is around 8000 character (it varies from time to time). Is there an upper limit in FastKeys?

Thanks
by lehmakommionu
May 10th, ’17, 03:52
Forum: Suggestions
Topic: Diagnostics window?
Replies: 1
Views: 1668

Diagnostics window?

Just an idea. Would it be possible to have a some kind of diagnostic window or log to see what scripts/shortcuts have been executed or are running at the moment? Also could be interesting for the statistics. I have problems with some of the scripts or commands or something else, and I'm having hard ...
by lehmakommionu
Apr 13th, ’17, 01:51
Forum: Suggestions
Topic: Option to add more User Variables
Replies: 3
Views: 2676

Re: Option to add more User Variables

Thanks, Marko! I was proposing that the user can create as many new fields as necessary by clicking for example "Add new user variable field" button (or remove them) when in Edit mode but actually more user variables are available by just writing them in a Auto Run command in the Start Men...
by lehmakommionu
Apr 13th, ’17, 01:41
Forum: General Discussion
Topic: Description as input?
Replies: 1
Views: 1433

Description as input?

Is there something like A_ThisHotkey alternative for the Fastkeys description field so the script could use it as input? Thanks!
by lehmakommionu
Apr 3rd, ’17, 01:03
Forum: Suggestions
Topic: Option to add more User Variables
Replies: 3
Views: 2676

Option to add more User Variables

The User Variables are very useful. I have already run out of the custom ones. Would it be possible to have an option, when Editing, to add as many more fields as necessary? Thanks.
by lehmakommionu
Apr 3rd, ’17, 00:32
Forum: General Discussion
Topic: closing an active app with shortcut
Replies: 5
Views: 2870

Re: closing an active app with shortcut

try for example

Code: Select all

WinGet, active_app, ProcessName, A
Runwait, taskkill /im "%active_app%" /f,, hide
return
by lehmakommionu
Apr 3rd, ’17, 00:17
Forum: General Discussion
Topic: Clipboard Manager History Limited
Replies: 3
Views: 2964

Re: Clipboard Manager History Limited

exactly the same problem here. deactivated all the modules to make sure it's not interfering with any of the scripts i have.
by lehmakommionu
Apr 2nd, ’17, 23:32
Forum: User Commands and Scripts
Topic: How to retrieve information from Bash or CMD
Replies: 2
Views: 5404

Re: How to retrieve information from Bash or CMD

with the following example you can also get by without writing output to a file but the disadvantage is that the cmd.exe pops up for a second, so I personally prefer the option Marko provided earlier, where the cmd window can be hidden. FilePath=C:\test.jpg objShell := ComObjCreate("WScript.She...
by lehmakommionu
Feb 27th, ’17, 15:39
Forum: General Discussion
Topic: Insert Another Item Macro?
Replies: 5
Views: 2814

Re: Insert Another Item Macro?

Good to know. Thanks, Marko! Another issue I found regarding the gosub. I hope you don't mind posting it here and not making another topic. The Start Menu Auto Run always executes the subroutine when saving or applying changes in FastKeys. You can try this Auto Run Command for example: #IfWinActive ...
by lehmakommionu
Feb 27th, ’17, 01:37
Forum: General Discussion
Topic: Insert Another Item Macro?
Replies: 5
Views: 2814

Re: Insert Another Item Macro?

gosub kr is giving me an error: Error: Target label does not exist. Specifically: kr ... ---> Gosub, kr ... while gosub kr ;%INSERT_kr% is working just fine. I guess it's interfering with something else because Gosub DOWN works perfectly, for example. Anyways this is one little nifty trick, so I do...