Search found 186 matches

by Oblomov
Oct 3rd, ’21, 19:55
Forum: General Discussion
Topic: Is it possible to 'Pause' FK from AHK?
Replies: 8
Views: 2266

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

Marko wrote: Oct 3rd, ’21, 18:44 Yes, possible.

Code: Select all

SendLevel 1
send ^+#f
SendLevel 0
Gotcha, thanks a lot!
by Oblomov
Oct 3rd, ’21, 15:57
Forum: General Discussion
Topic: Is it possible to 'Pause' FK from AHK?
Replies: 8
Views: 2266

Is it possible to 'Pause' FK from AHK?

Hello, I was wondering, is it perhaps possible to pause FK from AHK? I tried in regards to: https://i.imgur.com/9z0LSDe.jpg https://i.imgur.com/tRcRsox.jpg ...but sadly to no avail. What I need it for: I basically want to pause & unpause FK with one command, as my FK has become rather bloated (7...
by Oblomov
Sep 2nd, ’21, 20:09
Forum: General Discussion
Topic: Problem with with 'Run' type commands, when upgrading from 4.29 to 5.04
Replies: 2
Views: 911

Re: Problem with with 'Run' type commands, when upgrading from 4.29 to 5.04

FastKeys will properly run/open any valid Windows path. In case the path contains a space character, path should be enclosed by quotation marks. Same as with the Command Prompt. Try "C:\Users\David\Dropbox\Power Options.lnk" To sort the columns, right-click and select Sort. You can change...
by Oblomov
Aug 28th, ’21, 12:17
Forum: General Discussion
Topic: Problem with with 'Run' type commands, when upgrading from 4.29 to 5.04
Replies: 2
Views: 911

Problem with with 'Run' type commands, when upgrading from 4.29 to 5.04

Hello, Today I've finally decided (found the time and figured that it must be pretty stable by now) to move from 4.29 to 5.04. Everything started out smooth, where I was changing the default Preferences at first… then I decided to execute a command called 'Window Spy open' through 'Quick find' Its c...
by Oblomov
Jul 23rd, ’21, 17:51
Forum: General Discussion
Topic: Google AutoCorrect Selection
Replies: 6
Views: 8617

Re: Google AutoCorrect Selection

Tom wrote: Jul 23rd, ’21, 17:30 Mentioned script no longer works with Google therefore we have removed it from the Library.
Please see here for possible alternatives: https://www.autohotkey.com/boards/viewtopic.php?t=67469
Thanks!
by Oblomov
Jul 20th, ’21, 15:18
Forum: General Discussion
Topic: Google AutoCorrect Selection
Replies: 6
Views: 8617

Re: Google AutoCorrect Selection

Sorry, no idea what you are trying to do... The 'smart' part in that fella's username, definitely doesn't live up to much, if anything at all. That much I'm certain of. Anyway, I've stumbled into this issue myself today: https://i.imgur.com/6EtmtiB.jpg This script can be found inside of FK's librar...
by Oblomov
Jun 24th, ’21, 11:58
Forum: General Discussion
Topic: 'Countdown Timer Big' but for minutes
Replies: 2
Views: 2665

Re: 'Countdown Timer Big' but for minutes

Tom wrote: Jun 24th, ’21, 11:11 The original script changes the count each second using a timer. The only thing you would need is to change the time from one second to 60 seconds:

Code: Select all

SetTimer, ShowTimerCD, 60000
Awesome, thanks!
by Oblomov
Jun 23rd, ’21, 11:03
Forum: General Discussion
Topic: 'Countdown Timer Big' but for minutes
Replies: 2
Views: 2665

'Countdown Timer Big' but for minutes

Hello, I wanted to change 'Countdown Timer Big' to minutes only, where I changed 'secsLeft' to 'minLeft': if WinExist("MyCountdown") { Gui, 19:Destroy SetTimer, ShowTimerCD, Off } else { InputBox, minLeft , Countdown, Countdown Minutes:,,160,123,,,,15 If ErrorLevel Return Gui 19:+LastFound...
by Oblomov
Jun 16th, ’21, 19:04
Forum: General Discussion
Topic: Tilde after command execution
Replies: 2
Views: 2755

Re: Tilde after command execution

Marko wrote: Jun 16th, ’21, 18:52 I believe this is a Windows Keyboard setting, try it without FastKeys running.
Indeed... was just wondering whether there was some way of preventing this perhaps 🤔
by Oblomov
Jun 16th, ’21, 17:34
Forum: General Discussion
Topic: Tilde after command execution
Replies: 2
Views: 2755

Tilde after command execution

Hello, Not sure if this is more of an AHK-related problem, but I couldn't find much through searching... Basically when I press 'CTRL + ALT + TREMA' (TREMA = ¨), to execute a command, it always adds a '~' in the beginning, whenever I start typing. Is there any way to prevent this perhaps? Kind regar...