Search found 172 matches

by ineuw
22 Apr 2021, 15:52
Forum: Ask for Help (v1)
Topic: [SOLVED] char() as hex values are not identified
Replies: 12
Views: 989

Re: char() as hex values are not identified

ClipWait has no effect unless you clear the clipboard before setting it. Assigning the clipboard repeatedly in rapid succession can lead to failure (which is why the ClipWait command exists). Except the first and last assignments in your script, you do not need to use the clipboard at all. Due to t...
by ineuw
22 Apr 2021, 12:38
Forum: Ask for Help (v1)
Topic: [SOLVED] char() as hex values are not identified
Replies: 12
Views: 989

Re: char() as hex values are not identified

Now you know why I am not the keeper of the launch codes. Especially at night.
by ineuw
22 Apr 2021, 01:22
Forum: Ask for Help (v1)
Topic: [SOLVED] char() as hex values are not identified
Replies: 12
Views: 989

Re: char() as hex values are not identified

Unless I misunderstood, "0x100022" was the recommended value when using the AHK Unicode version. I don't know where you saw that, but the MsgBox proves that's not the case. Please look under Chr() in Autokey manual version 1.1.33.02. Now, I admit that this may be a typo, but I had to try. Also plea...
by ineuw
22 Apr 2021, 01:00
Forum: Ask for Help (v1)
Topic: [SOLVED] char() as hex values are not identified
Replies: 12
Views: 989

Re: char() as hex values are not identified

One big problem with your attempts at using hex is the values are wrong. For some reason you have, for example, 0x100022 which is 1,048,610 in decimal when you meant it to be 34 decimal. I'm guessing you took 0x1 to be the prefix for a hex number, but it's not, it's 0x . The 1 doesn't belong there....
by ineuw
21 Apr 2021, 21:44
Forum: Ask for Help (v1)
Topic: [SOLVED] char() as hex values are not identified
Replies: 12
Views: 989

Re: char() as hex values are not identified

I don't know whether your hex numbers will have valid output, but here is a general idea to streamline the approach a bit. Again thanks. I had no luck with the hex values so far. - I altered the script using the "monkey see monkey do" programming principle, and substituted the hexadecimal values wi...
by ineuw
21 Apr 2021, 20:52
Forum: Ask for Help (v1)
Topic: [SOLVED] char() as hex values are not identified
Replies: 12
Views: 989

Re: char() as hex values are not identified

@mikeyww. Thank for the excellent suggestions, I will implement and test them immediately.
by ineuw
21 Apr 2021, 20:30
Forum: Ask for Help (v1)
Topic: [SOLVED] char() as hex values are not identified
Replies: 12
Views: 989

[SOLVED] char() as hex values are not identified

I clean text documents created by OCR (optical character recognition) software. I need to convert a series of hexadecimal character values, which appear as single or double quote characters, to the standard double quote chr(0x0022) character. But I am having no luck. Can someone please look at what ...
by ineuw
07 Dec 2020, 00:41
Forum: Ask for Help (v1)
Topic: Blocking Win10 access keys also disables AHK
Replies: 7
Views: 1680

Re: Blocking Win10 access keys also disables AHK

You can reassign those keys as you like. An example is below. The deeper I bury myself into the intricacies of AHK the more I am in awe of the complexities faced by the developers. I must read, understand, and test more, before revisiting this topic. If it's possible, I would like to keep this post...
by ineuw
06 Dec 2020, 16:02
Forum: Ask for Help (v1)
Topic: Blocking Win10 access keys also disables AHK
Replies: 7
Views: 1680

Re: Blocking Win10 access keys also disables AHK

mikeyww wrote:
06 Dec 2020, 09:00
Thanks for the advice. I tried it and it blocks all Windows keyboard assignments, including AHK. The hope was that my key combinations will override the same combinations used by Windows to gain a few more easily accessible key combinations for my macro scheme.
by ineuw
05 Dec 2020, 16:34
Forum: Ask for Help (v1)
Topic: Blocking Win10 access keys also disables AHK
Replies: 7
Views: 1680

Re: Blocking Win10 access keys also disables AHK

Many many thanks for the solution, it's really appreciated. Just exploring the possibilities with the following question: Is there a way to set a rule that all modifier key combinations declared in the .ahk file take precedence over any app's key same assignments? I am referring to combinations wit...
by ineuw
04 Dec 2020, 23:33
Forum: Ask for Help (v1)
Topic: Blocking Win10 access keys also disables AHK
Replies: 7
Views: 1680

Blocking Win10 access keys also disables AHK

I need to block the Windows 10 Access keys so that those keys combinations to be defined in AHK. I implemented the three suggestions in this article: https://www.top-password.com/blog/disable-windows-key-shortcuts-hotkeys-in-windows-10/ . The first two options changed nothing. For example: The Win+G...
by ineuw
05 Nov 2020, 15:07
Forum: Ask for Help (v1)
Topic: [SOLVED] AHK 1.1.33.02 triggers incorrect warnings
Replies: 6
Views: 554

Re: AHK 1.1.33.02 triggers incorrect warnings

Again, much thanks for taking the time to check it. I got the identical results. I'll close the topic as solved.
by ineuw
05 Nov 2020, 13:20
Forum: Ask for Help (v1)
Topic: [SOLVED] AHK 1.1.33.02 triggers incorrect warnings
Replies: 6
Views: 554

Re: AHK 1.1.33.02 triggers incorrect warnings

https://p.ahkscript.org/ didn't generate an unique url so I pasted it in pastebin. https://pastebin.com/c7zYqFSZ
by ineuw
05 Nov 2020, 12:20
Forum: Ask for Help (v1)
Topic: [SOLVED] AHK 1.1.33.02 triggers incorrect warnings
Replies: 6
Views: 554

Re: AHK 1.1.33.02 triggers incorrect warnings

Much thanks for the reply. Of the 7 warnings, 4 were logical visible errors which I corrected. The rest could only be eliminated by #Warn Unreachable, Off While I don't see why the warnings are triggered, I am very interested in your assessment at a glance. Can I post a 1,300 line code here?
by ineuw
05 Nov 2020, 11:28
Forum: Ask for Help (v1)
Topic: [SOLVED] AHK 1.1.33.02 triggers incorrect warnings
Replies: 6
Views: 554

[SOLVED] AHK 1.1.33.02 triggers incorrect warnings

Upgraded from .32 to .33 and my .ahk file which includes #warn is raising numerous errors about subsequent code cannot be executed because of a previous return statement . . . . which is not true. Disabled #warn but unsure if it's a bug or it's a problem discovered by the updated interpreter. Info o...
by ineuw
22 Aug 2020, 13:22
Forum: Ask for Help (v1)
Topic: Time format is not understood
Replies: 6
Views: 577

Re: Time format is not understood

The ahk help is very good but I learned from many other users with their complex scripts , dll , regex, other good ideas ... etc Autohotkey help : "C:\Program Files\AutoHotkey\AutoHotkey.chm" run,%a_programfiles%\AutoHotkey\AutoHotkey.chm FormatTime, OutputVar [, YYYYMMDDHH24MISS, Format] Thanks fo...
by ineuw
21 Aug 2020, 22:09
Forum: Ask for Help (v1)
Topic: Time format is not understood
Replies: 6
Views: 577

Re: Time format is not understood

Much thanks to all. AutoHotkey did a fantastic job with the development and the documentation which includes numerous examples with variations, but they address sophisticated issues which I don't come across. For people like me (a permanent newbie), a simple real life example is worth ten manuals.
by ineuw
21 Aug 2020, 11:53
Forum: Ask for Help (v1)
Topic: Time format is not understood
Replies: 6
Views: 577

Time format is not understood

I am looking for scripts to study the use of FormatTime. The script below produces 12:44 PM Friday, August 21, 2020 when I was aiming for yyyy-mm-dd hh:mm.

Code: Select all


#ins::
	clipboard =
	dt_st := a_now
	FormatTime, dt_st, yyyy-MM-dd HH:mm
	sendinput, %dt_st%
return

by ineuw
13 May 2020, 00:10
Forum: General Discussion
Topic: What is the hierarchy of the various keyboard macros between apps
Replies: 2
Views: 1085

Re: What is the hierarchy of the various keyboard macros between apps

So the question is, can AHK handle the functionalities of those four keys on behalf of Vivaldi, so you can disable all of Vivaldi's native key assignments? I tried that but if the shortcut key functions are turned off, then AHK macros will not work either. If the assignments are cleared then my AHK...

Go to advanced search