Search found 184 matches

by Oblomov
Sep 27th, ’23, 16:46
Forum: General Discussion
Topic: How to make an if statement, work inside of FastKeys...
Replies: 4
Views: 972

Re: How to make an if statement, work inside of FastKeys...

What is the first part of the script doing? What are you trying to accomplish? As said, if WinActive works for me. Removing a line and saving, a command I often used with Notepad. Either way, it seems I've 'fixed' this now... It appears I had a 'CtrlD' hotkey inside of an AHK script I long forgot a...
by Oblomov
Sep 24th, ’23, 17:14
Forum: General Discussion
Topic: How to make an if statement, work inside of FastKeys...
Replies: 4
Views: 972

Re: How to make an if statement, work inside of FastKeys...

Ctrl+D creates a duplicate in FastKeys and does not delete anything. Your code works for me, do you have a speaker turned on? I see. Though for me in regards to this command, it always just selects some number of shortcuts or/and deletes them... Speaker turned on, yes. SoundBeep works fine for me i...
by Oblomov
Sep 24th, ’23, 10:11
Forum: General Discussion
Topic: How to make an if statement, work inside of FastKeys...
Replies: 4
Views: 972

How to make an if statement, work inside of FastKeys...

I'm trying to make the following if statement, work inside of FastKeys: https://i.imgur.com/dHjAbTC.jpg Often times when I hit CtrlF (search), I sometimes accidentally hit CtrlD, which then deletes a shortcut... I think there've been a few times in the past, where I was in such a hurry, that I didn'...
by Oblomov
Sep 4th, ’23, 16:32
Forum: General Discussion
Topic: Can't get AHK to interact with FastKeys
Replies: 2
Views: 728

Re: Can't get AHK to interact with FastKeys

Tom wrote: Sep 3rd, ’23, 20:28 Probably you need to activate the window first.
https://www.autohotkey.com/docs/v1/lib/WinActivate.htm
That worked... but then I shortly after realized that the clicking itself works now too/activates it — so basically it just started working after a restart 💀
by Oblomov
Sep 1st, ’23, 15:55
Forum: General Discussion
Topic: Can't get AHK to interact with FastKeys
Replies: 2
Views: 728

Can't get AHK to interact with FastKeys

I can't get AHK to interact with FastKeys. For example get AHK to click on a part of FK's menu, or for example call 'CtrlF' in it... How come? I really need this so I can create a script, correcting a number of existing entries, inside of FastKeys. Here on the GIF, I'm pressing F2 several times, in ...
by Oblomov
Aug 3rd, ’23, 20:14
Forum: General Discussion
Topic: Is it possible for an AHK script, to override FastKeys?
Replies: 2
Views: 1197

Re: Is it possible for an AHK script, to override FastKeys?

Marko wrote: Jul 25th, ’23, 08:47 Both shortcuts will trigger. The only way is to disable F1 in FastKeys.
Gotcha.
by Oblomov
Aug 3rd, ’23, 17:53
Forum: General Discussion
Topic: Is it possible to 'Pause' FK from AHK?
Replies: 8
Views: 2189

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

Does this work? SendLevel 1 Send, \ui{Space} SendLevel 0 Unfortunately not, it just pastes '\ui' instead... (the reason for why I'm trying to get this to work btw, is because most of my text expansions start with '\', but keyboard-wise, it is now tricky for me to reach manually, as it hurts my wris...
by Oblomov
Jul 24th, ’23, 20:21
Forum: General Discussion
Topic: Is it possible for an AHK script, to override FastKeys?
Replies: 2
Views: 1197

Is it possible for an AHK script, to override FastKeys?

For example if I have F1 inside of FastKeys, but then also inside of an AHK script, which I use from time to time; and want to override FastKeys with it, without disabling FastKeys (because I want to use its other functions, besides F1)
by Oblomov
Jul 24th, ’23, 12:03
Forum: General Discussion
Topic: Is it possible to 'Pause' FK from AHK?
Replies: 8
Views: 2189

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

Hope it’s okay I necropost this. In regards to the image below (the red arrow should be reversed actually), is it somehow possible to in regards to Text Expander, do the same as suggested in this thread? Because: SendLevel 1 Send, \ SendLevel 0 Doesn’t seem to for example ‘call’/jive with ‘\ui’. I.e...
by Oblomov
Jul 20th, ’23, 19:47
Forum: General Discussion
Topic: Problem with shortcut excecuting only once
Replies: 2
Views: 3890

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...