Search found 185 matches

by Oblomov
Jul 20th, ’23, 19:47
Forum: General Discussion
Topic: Problem with shortcut excecuting only once
Replies: 2
Views: 3907

Re: Problem with shortcut excecuting only once

Marko wrote: Apr 30th, ’23, 14:31 Avoid ExitApp command in FastKeys scripts, replace it with Return.
But it seems something like 'e::return' is even worse than 'e::exitapp' though...
by Oblomov
Feb 7th, ’23, 21:54
Forum: General Discussion
Topic: Is there any way to '#include' a lib from an external directory?
Replies: 5
Views: 955

Re: Is there any way to '#include' a lib from an external directory?

Marko wrote: Jan 31st, ’23, 14:14 This feature was introduced in version 5.09. You cannot do this with the old version.
Image

Err...
by Oblomov
Feb 1st, ’23, 14:09
Forum: General Discussion
Topic: Using SPACE as a trigger?
Replies: 1
Views: 662

Re: Using SPACE as a trigger?

Hi there, I've been using the software for about a month now, and did finally decide to purchase. However, I've never been able to set the trigger to be "space". I'd like to be able to have text expand once I hit the spacebar. I've tried making changes in Settings, but I seem to be making...
by Oblomov
Jan 31st, ’23, 14:37
Forum: General Discussion
Topic: Is there any way to '#include' a lib from an external directory?
Replies: 5
Views: 955

Re: Is there any way to '#include' a lib from an external directory?

This feature was introduced in version 5.09. You cannot do this with the old version. I see... yes. I've run into a number of fundamental issues with the new iteration of FK (https://www.fastkeysautomation.com/forum/viewtopic.php?f=4&t=1747&p=5767#p5767, e.g. 'Couldn't quite 'isolate' the '...
by Oblomov
Jan 31st, ’23, 08:48
Forum: General Discussion
Topic: Is there any way to '#include' a lib from an external directory?
Replies: 5
Views: 955

Re: Is there any way to '#include' a lib from an external directory?

Try adding the #Include command into the Tools/Startup code and let me know how it works. Hm, is that something from one of the new versions? I'm still on 4.29 if anything... Doesn't seem like you can add a lib somewhere inside of the 'Tools' tab if anything. Searched for 'lib' and 'library' inside...
by Oblomov
Jan 30th, ’23, 14:38
Forum: General Discussion
Topic: Is there any way to '#include' a lib from an external directory?
Replies: 5
Views: 955

Is there any way to '#include' a lib from an external directory?

(Inside of a command) Such as from 'C:\Program Files\AutoHotkey\lib'... I've tried every combination :(
by Oblomov
Jul 5th, ’22, 20:05
Forum: General Discussion
Topic: Find and replace characters in the macro database
Replies: 5
Views: 842

Re: Find and replace characters in the macro database

Marko wrote: Jul 5th, ’22, 19:53 Just reload FastKeys after making changes.
Gotcha, thanks!
by Oblomov
Jul 5th, ’22, 16:51
Forum: General Discussion
Topic: Find and replace characters in the macro database
Replies: 5
Views: 842

Re: Find and replace characters in the macro database

You could open the settings file in any text editor and make the changes. Oh, that sounds wonderful! https://i.imgur.com/lvjnB15.jpg So I'm guessing one can basically edit all instances of a specific 'MouseMove' (1740 in this case)? If so, would one first need to shut down FK, or just restart it af...
by Oblomov
Oct 28th, ’21, 18:00
Forum: General Discussion
Topic: Is it possible to 'Pause' FK from AHK?
Replies: 8
Views: 2229

Re: Is it possible to 'Pause' FK from AHK?

Of course, when restarting, the running script is also cancelled so the second part never executes. Oh, right! Also, I realized that I actually don't really need the part after the 'Run', because the reason for why FK became unresponsive after, was seemingly due to attempting to execute the command...
by Oblomov
Oct 20th, ’21, 19:05
Forum: General Discussion
Topic: Is it possible to 'Pause' FK from AHK?
Replies: 8
Views: 2229

Re: Is it possible to 'Pause' FK from AHK?

Yes, possible. SendLevel 1 send ^+#f SendLevel 0 Hm, I got this command: Run, C:\Users\Dave\Dropbox\AutoHotkey Script restart.bat,, Hide Sleep 500 SendLevel 1 send ^+#f SendLevel 0 ;Sleep 50 ;Sleep 100 Sleep 5000 SendLevel 1 send ^+#f SendLevel 0 Which restarts my AHK scripts and is supposed turn F...