Search found 24 matches

by kklepper
25 May 2021, 07:49
Forum: Ask for Help (v1)
Topic: What is Toolbar.ahk and how did I get it?
Replies: 8
Views: 494

Re: What is Toolbar.ahk and how did I get it?

Thank you for the clarification.
by kklepper
24 May 2021, 06:19
Forum: Ask for Help (v1)
Topic: What is Toolbar.ahk and how did I get it?
Replies: 8
Views: 494

Re: What is Toolbar.ahk and how did I get it?

Lexikos, actually this is my version:

SciTE4AutoHotkey
Version 3.0.06.01 - Based on SciTE 3.5.1
Built on Oct 12 2014 13:40:05
by fincs - Original SciTE by Neil Hodgson

Do you think the version of evilC is different given that it has the same build number?
by kklepper
24 May 2021, 06:10
Forum: Ask for Help (v1)
Topic: What is Toolbar.ahk and how did I get it?
Replies: 8
Views: 494

Re: What is Toolbar.ahk and how did I get it?

Hi lexikos,

Thank you very much. I know you guys are great.
by kklepper
23 May 2021, 12:23
Forum: Ask for Help (v1)
Topic: What is Toolbar.ahk and how did I get it?
Replies: 8
Views: 494

Re: What is Toolbar.ahk and how did I get it?

Hi gregster, Thank you very much for your detailed explanation. I just happed to see it today as I didn't get a notification. I start my ahk file with Autostart and Scite4AHK as well. A workaround, I guess, would be to omit the latter to be started manually when needed. Well, I ended up replacing my...
by kklepper
27 Apr 2021, 13:51
Forum: Ask for Help (v1)
Topic: What is Toolbar.ahk and how did I get it?
Replies: 8
Views: 494

What is Toolbar.ahk and how did I get it?

I use AHK for years extensively alongside with SciTE4AutoHotkey. In my Autostart group, I have an ahk file with my definitions which starts those and also a link to SciTE4AutoHotkey which loads this file in order to be able to quickly augment my definitions as needed. None of the other members of th...
by kklepper
20 Jan 2015, 09:33
Forum: Ask for Help (v1)
Topic: How to reliably activate an edit area in a program?
Replies: 1
Views: 924

Re: How to reliably activate an edit area in a program?

Sorry to have disturbed you: It looks like I found the reason myself. After the call of this function copy_paste_to_flashnote I called another function toggle_wsr which activates WSR. Having switched the sequence (first activate, then copy-paste) seems to have solved the problem. So the toggle (^{LW...
by kklepper
20 Jan 2015, 08:38
Forum: Ask for Help (v1)
Topic: How to reliably activate an edit area in a program?
Replies: 1
Views: 924

How to reliably activate an edit area in a program?

Hi all, trying to produce a sleek workflow for Windows speech recognition (WSR), I created two hotkeys which switch from my application to a fast program (Flashnote) which happens to work very well with WSR and back. Flashnote is an extremely fast, but primitive editor, useful for taking notes and o...
by kklepper
15 Jan 2015, 19:09
Forum: Ask for Help (v1)
Topic: Windows speech recognition activation keys - how to
Replies: 21
Views: 7926

Re: Windows speech recognition activation keys - how to

Could I suggest that - in future - when you are having problems with keyboard input not behaving as expected when using AHK that you perhaps mention you're using a specialist USB keyboard (and driver) before post #19? Just a thought... :) Thank you very much - but alas, I wasn't even aware of me ha...
by kklepper
15 Jan 2015, 16:16
Forum: Ask for Help (v1)
Topic: How to program control key combinations only like ^# in AHK?
Replies: 7
Views: 2729

Re: How to program control key combinations only like ^# in

When I tried to simplify this by defining a function, I ran into a new problem: toggle_wsr() { SendInput, {Ctrl down} SendInput, {LWin down} SendInput, {LWin up} SendInput, {Ctrl up} } Pause:: toggle_wsr() return This did not work! It should! Why? :sick: KeyHistory came to the rescue again: 13 045 d...
by kklepper
15 Jan 2015, 15:53
Forum: Ask for Help (v1)
Topic: How to program control key combinations only like ^# in AHK?
Replies: 7
Views: 2729

Re: How to program control key combinations only like ^# in

Reading the help file, I discovered debugging methods using KeyHistory: Pause:: SendInput, ^{LWin} KeyHistory return produced the follwing output VK SC Type Up/Dn Elapsed Key Window ------------------------------------------------------------------------------------------------------------- 13 045 d...
by kklepper
15 Jan 2015, 11:05
Forum: Ask for Help (v1)
Topic: How to program control key combinations only like ^# in AHK?
Replies: 7
Views: 2729

Re: How to program control key combinations only like ^# in

I confess I use classic shell - maybe this is why SendInput, ^{LWin} does not work for me. Uninstalling classic shell for a test seems to be overkill, so let me first ask: could that be?
by kklepper
15 Jan 2015, 08:26
Forum: Ask for Help (v1)
Topic: How to program control key combinations only like ^# in AHK?
Replies: 7
Views: 2729

Re: How to program control key combinations only like ^# in

To AutoHotkey, ^# means Ctrl and the hash symbol. # is only a modifier (win key) symbol when it modifies some other key. ^{LWin} is the correct way to send it, and as you said, it works on other boxes. Thank you for the clarification. Does manually pressing Ctrl+LWin work on yours? Yes, of course, ...
by kklepper
14 Jan 2015, 22:58
Forum: Ask for Help (v1)
Topic: How to program control key combinations only like ^# in AHK?
Replies: 7
Views: 2729

Re: How to program control key combinations only like ^# in

I don't have speech recognition setup but I think this will work run , c:\windows\speech\common\sapisvr.exe -SpeechUX let me know how it goes Thank you very much. This command works fine, however it does not solve my problem. It starts the engine, or rather, as it is started at startup anyway, it s...
by kklepper
14 Jan 2015, 22:34
Forum: Ask for Help (v1)
Topic: How to program control key combinations only like ^# in AHK?
Replies: 7
Views: 2729

How to program control key combinations only like ^# in AHK?

On my box with Win 7 64 bit, ^# will turn Speech Recognition on or off. How can this be done with AHK? ;Send ^# ; does not work ;SendPlay ^# ; does not work Send ^{LWin} ; opens the start menu at my box, works with others SendInput, ^{LWin} ; opens the start menu at my box, works with others I guess...
by kklepper
14 Jan 2015, 22:18
Forum: Ask for Help (v1)
Topic: Windows speech recognition activation keys - how to
Replies: 21
Views: 7926

Re: Windows speech recognition activation keys - how to

WSR macros have been available since early 2008: http://blogs.msdn.com/b/speech/archive/2008/04/25/windows-speech-recognition-macros-is-now-available.aspx Thank you very much, I didn't know this. Download Windows Speech Recognition Macros : http://www.microsoft.com/en-gb/download/details.aspx?id=13...
by kklepper
14 Jan 2015, 13:50
Forum: Ask for Help (v1)
Topic: Windows speech recognition activation keys - how to
Replies: 21
Views: 7926

Re: Windows speech recognition activation keys - how to

BTW Dragon is not that good, it makes mistakes in a relatively tricky way and I have to proof read anything I dictate in it due to the mistakes it makes. Good point, that is my experience also. Proof reading is essential and not easy, never was, which is why you find errors in even the best books w...
by kklepper
14 Jan 2015, 13:43
Forum: Ask for Help (v1)
Topic: Windows speech recognition activation keys - how to
Replies: 21
Views: 7926

Re: Windows speech recognition activation keys - how to

on AHK related note :) you can use AutoScriptWriter program, that might give you an some idea about... I don't know, an idea about what might be going on, I don't use it that often, meaning never needed it, but it's there, give it a shot, from my simple tests, it might work hope that works, as it s...
by kklepper
14 Jan 2015, 13:40
Forum: Ask for Help (v1)
Topic: Windows speech recognition activation keys - how to
Replies: 21
Views: 7926

Re: Windows speech recognition activation keys - how to

The OP hasn't replied to my post about how I do this: ^LWin::Run, "C:\Windows\Speech\Common\sapisvr.exe" -SpeechUX -Startup So sorry, I somehow overlooked your post. Thanks for the reminder. Well, this works for me. It starts the engine, or rather, as it is started at startup anyway, it shows the a...

Go to advanced search