Search found 443 matches

by hoppfrosch
16 Sep 2019, 23:46
Forum: Scripts and Functions (v1)
Topic: Upcoming Ahk2Exe Changes (2024)
Replies: 630
Views: 187907

Re: Upcoming Ahk2Exe Changes (2019)

Ahk2exe should be installed as stated in the first post of this topic, i.e. the Compiler sub-directory under where AutoHotkey has been installed. (Usually C:\Program Files\AutoHotkey\Compiler\.). It's a real pity, that Ahk2exe requires a fixed structure / a real installation of AutoHotkey (includin...
by hoppfrosch
16 Sep 2019, 07:59
Forum: Scripts and Functions (v1)
Topic: Upcoming Ahk2Exe Changes (2024)
Replies: 630
Views: 187907

Re: Upcoming Ahk2Exe Changes (2019)

Thank you for your fast response - I haven't used AHK2EXE before, so the directives have not been in my focus yet. I will give it a try ....
by hoppfrosch
16 Sep 2019, 06:44
Forum: Scripts and Functions (v1)
Topic: Upcoming Ahk2Exe Changes (2024)
Replies: 630
Views: 187907

Using AutoHotkey from local directory

Hi, running Ahk2Exe.exe (1.1.30.03_Beta_5) on my project, I get the following error: --------------------------- Ahk2Exe Warning --------------------------- Warning: AutoHotkey.exe could not be located! Auto-includes from Function Libraries, and 'Obey' directives will not be processed. I've got foll...
by hoppfrosch
12 Sep 2019, 06:16
Forum: Scripts and Functions (v1)
Topic: Upcoming Ahk2Exe Changes (2024)
Replies: 630
Views: 187907

Re: Upcoming Ahk2Exe Changes (2019)

Can Ahk2Exe also be used via commandline only (without showing the GUI)?
This would be very helpful here to implement a fully automated deployment chain ...
by hoppfrosch
05 Sep 2019, 00:52
Forum: Bug Reports
Topic: [a104] Bug: Gui.Options() Topic is solved
Replies: 2
Views: 1439

[a104] Bug: Gui.Options() Topic is solved

Related to AutHotkey2 a104 Method Gui.Options() does not work anymore - Gui.Opt() has to be used instead. As documentation states, both variants ( Gui.Opt() or Gui.Options() ) should work ... This is either a bug in AHK2 a104 itself (both variants should work) . or in documentation of a104 ( Gui.Opt...
by hoppfrosch
04 Sep 2019, 23:16
Forum: AutoHotkey Development
Topic: AHK Unit Testing
Replies: 8
Views: 3955

Re: AHK Unit Testing

lexikos wrote:
04 Sep 2019, 03:36
8e083e7 is the version I was using last.
Thank you - I'll be using it .... :thumbup:
I second guest3456's request for creating a pull request.
by hoppfrosch
03 Sep 2019, 23:44
Forum: AutoHotkey Development
Topic: AHK Unit Testing
Replies: 8
Views: 3955

Re: AHK Unit Testing

You are welcome to create some unit tests. If they can be completely automated, I will use them. I have unit tests for Object.ahk, which don't work anymore because they're written for a previous alpha. Yunit was a bit troublesome since Yunit uses objects, and Object.ahk changes the way they work. I...
by hoppfrosch
03 Sep 2019, 23:34
Forum: Other Utilities & Resources
Topic: Boostnote [App]
Replies: 0
Views: 3302

Boostnote [App]

Boostnote Boost Happiness, Productivity and Creativity. An open source markdown editor for Mac, Windows and Linux app. The intuitive and stylish note taking tool for developers. I personally use it as notepad and snippetkeeper - easy to use since you write everything in markdown. Syntax highlightin...
by hoppfrosch
03 Sep 2019, 23:19
Forum: Ask for Help (v1)
Topic: [REGEX] How to capture any color text value on the fly ? Topic is solved
Replies: 16
Views: 2774

Re: [REGEX] How to capture any color text value on the fly ? Topic is solved

A pure regex-solution to match your 0...255 triples - it uses a more specialized regex than your simple \d{1-3} Thanks, could you make it so it also match 255,0,000 or 12,00,07 format ? For sure ... https://regex101.com/r/iJ3fUc/1: The regex has to be: re_255 := "\b([0-1]{0,1}[0-9]{0,1}[0-9]|2[0-4]...
by hoppfrosch
03 Sep 2019, 03:42
Forum: Ask for Help (v1)
Topic: [REGEX] How to capture any color text value on the fly ? Topic is solved
Replies: 16
Views: 2774

Re: [REGEX] How to capture any color text value on the fly ? Topic is solved

A pure regex-solution to match your 0...255 triples - it uses a more specialized regex than your simple \d{1-3} (https://regex101.com/r/5hwzOS/1) var= ( try 800000 777,0,0 kldjfdoifj 12,12,3 dfjiosjf jksdi 8000AA 128,0,0 125,125,125|255,254,253 0xffaabb FF0000 256,0,0 FFA500 257,165,0 FFFF00 550,255...
by hoppfrosch
31 Aug 2019, 11:19
Forum: Tips and Tricks (v1)
Topic: list of interfaces with method numbers
Replies: 2
Views: 6286

Re: list of interfaces with method numbers

Just for completeness and to highlight/remember a forgotten gem:
maul-esel once presented "AHK classes that implement COM interfaces": COM-Classes
by hoppfrosch
25 Aug 2019, 22:40
Forum: Off-topic Discussion
Topic: I decided to read books
Replies: 8
Views: 7646

Re: I decided to read books

The Epic of Gilgamesh
by hoppfrosch
06 Aug 2019, 23:38
Forum: Scripts and Functions (v1)
Topic: [module] Mouse gestures
Replies: 3
Views: 2974

Re: [module] Mouse gestures

Have a look here:

https://www.autohotkey.com/boards/viewtopic.php?p=237927#p237927

There is an archive available, where the missing file should be part of (at least the file is listed as being member of the archive)

Hope that helps
by hoppfrosch
26 Jul 2019, 00:16
Forum: Ask for Help (v1)
Topic: Using RegExMatch with a "range" of expressions Topic is solved
Replies: 4
Views: 881

Re: Using RegExMatch with a "range" of expressions Topic is solved

You might use this regular expression to match only numbers greater/equal than 6: \s+([6-9]|[1-9]\d{1,})\s+ In detail: \s+ ;one or more spaces ([6-9]|[1-9]\d{1,}) ;number matching [6-9] ;one digit from range 6-9 ==> matches numbers 6 to 9 | ; OR [1-9]\d{1,} ;one digit from range 1 to 9 followed by a...
by hoppfrosch
21 Jun 2019, 04:44
Forum: Visual Studio Code
Topic: Visual Studio Code Support
Replies: 20
Views: 40335

Re: Visual Studio Code Support

An alternative to Code Runner to run ahk-files from within VSCode, might be using Tasks . To get this running, do the following: Create a subfolder named .vscode within your working directory Create a file named tasks.json within folder .vscode Put the following contents into tasks.json { // See htt...
by hoppfrosch
20 Jun 2019, 22:56
Forum: Scripts and Functions (v1)
Topic: Cross Reference List (XRef)
Replies: 52
Views: 22360

Re: Cross Reference List (XRef)

The download link from OP leads to an error ... "Error (404) - We can't find the page you're looking for." (https://bit.ly/2nmi8Id -> https://www.dropbox.com/s/dl/ast2uf4e7uzrxg9/XRef.zip)

You should consider, hosting it on github (or similar)

Go to advanced search