Search found 1452 matches

by Chunjee
07 Mar 2024, 14:59
Forum: Scripts and Functions (v1)
Topic: [Class] biga.ahk (166 utility methods)
Replies: 131
Views: 43853

Re: [Class] biga.ahk (166 utility methods)

Expecting about 100 or 200 more tests to be added as I am going through each method one by one and adding more.

I did find one bug so far; in .depthOf
by Chunjee
07 Mar 2024, 14:40
Forum: Scripts and Functions (v1)
Topic: [Class] expect.ahk (rapid unit testing)
Replies: 23
Views: 4140

Re: [Class] expect.ahk (rapid unit testing)

Github repo contains most fixes. Documentation has not been fixed yet.

I noticed a TAP 14 spec which this may not be following completely. I would like to get that looked at as well
by Chunjee
07 Mar 2024, 13:39
Forum: Scripts and Functions (v1)
Topic: HTH: A Transpiler for AutoHotKey v1 Code into JavaScript
Replies: 1
Views: 193

Re: HTH: A Transpiler for AutoHotKey v1 Code into JavaScript

I saw this on Discord. Very cool need to give it a try :thumbup:
by Chunjee
06 Mar 2024, 01:13
Forum: Ask for Help (v2)
Topic: Somewhat silly question about V1 vs V2 Topic is solved
Replies: 12
Views: 593

Re: Somewhat silly question about V1 vs V2 Topic is solved

I visited the python docs and saw about 15 subversions listed


I have Windows 7 on some Laptops and lots and lots of ahkv1 scripts that wouldn't be moved to v2 without hours and hours of rewriting.
by Chunjee
04 Mar 2024, 01:12
Forum: Ask for Help (v1)
Topic: will a plain txt .ahk that perform delete C:/ but warned by anti virus?
Replies: 3
Views: 121

Re: will a plain txt .ahk that perform delete C:/ but warned by anti virus?

Sounds more like an anti-virus question. Ahk doesn't handle this
by Chunjee
29 Feb 2024, 12:35
Forum: Scripts and Functions (v2)
Topic: json copy of documentation
Replies: 1
Views: 989

Re: json copy of documentation

Fantastic! Well done

I may have a use for this
by Chunjee
29 Feb 2024, 12:25
Forum: Scripts and Functions (v2)
Topic: simple no-cost json storage API
Replies: 2
Views: 505

Re: simple no-cost json storage API

Very cool, thank you

I will be trying this soon
by Chunjee
29 Feb 2024, 10:44
Forum: Ask for Help (v1)
Topic: Sort Array Topic is solved
Replies: 2
Views: 195

Re: Sort Array Topic is solved

inseption86 wrote:
28 Feb 2024, 06:16
how to sort array2 according to array1?
Wasn't sure what this means but these may be of interest to you:
https://biga-ahk.github.io/biga.ahk/#/?id=sortby
https://chunjee.github.io/array.ahk/#/docs?id=sort
by Chunjee
29 Feb 2024, 01:15
Forum: Ask for Help (v1)
Topic: how to use winspy to get all displayed data from active app into array Topic is solved
Replies: 4
Views: 182

Re: how to use winspy to get all displayed data from active app into array Topic is solved

I will continue to waste time on it

But I don't have that app so I am stuck in a very fast loop







halp
by Chunjee
29 Feb 2024, 01:09
Forum: Ask for Help (v2)
Topic: which app to code it
Replies: 5
Views: 199

Re: which app to code it

I think SciTE fell of in 2019 or whenever atom/VSCode appeared
by Chunjee
28 Feb 2024, 17:04
Forum: Scripts and Functions (v1)
Topic: showcase of random Scripts
Replies: 2
Views: 307

Re: showcase of random Scripts

https://github.com/Chunjee/personal-log/raw/main/assets/header.jpeg https://img.shields.io/badge/source-code-red?style=for-the-badge&logo=github https://img.shields.io/badge/License-MIT-tan?style=for-the-badge thread: https://www.autohotkey.com/boards/viewtopic.php?f=6&t=125007 A diary app that is ...
by Chunjee
28 Feb 2024, 16:45
Forum: Ask for Help (v1)
Topic: How Do I Sum the Values of a Specific Variable
Replies: 8
Views: 226

Re: How Do I Sum the Values of a Specific Variable

Just for fun: A := new biga() ; requires https://github.com/biga-ahk/biga.ahk myNumbers := ["$5,000", "$3,000"] msgbox, % A.sum(A.map(myNumbers, A.parseInt)) ; => 8000 msgbox, % A.sumBy(myNumbers, A.parseInt) ; => 8000 https://biga-ahk.github.io/biga.ahk/#/?id=parseint https://biga-ahk.github.io/big...
by Chunjee
28 Feb 2024, 16:40
Forum: Ask for Help (v1)
Topic: how to use winspy to get all displayed data from active app into array Topic is solved
Replies: 4
Views: 182

Re: how to use winspy to get all displayed data from active app into array Topic is solved

OCR would be a bad idea for this I would experiment with winspy and see what you can gather from your app/notepad https://media.discordapp.net/attachments/378322175226150912/618960532631715877/winspy.png?ex=65e9056a&is=65d6906a&hm=834dc115956f6259e9d3db2c2ec32975c23bc224a143fdcdb81153a8cbeda1a1&=&fo...
by Chunjee
26 Feb 2024, 09:00
Forum: Ask for Help (v1)
Topic: Formatting objects/arrays
Replies: 10
Views: 519

Re: Formatting objects/arrays

it appears to me like a lot of the json libraries also have issues with detecting [] vs {} They usually resort to counting the indexes, if they start at one and are consecutive, a regular array can be assumed with some accuracy. ; Array() is not overridden, rollback to old method of ; identifying ar...
by Chunjee
26 Feb 2024, 08:48
Forum: Ask for Help (v1)
Topic: Color Variation Closest to Black and White
Replies: 4
Views: 165

Re: Color Variation Closest to Black and White

around 100 works well

You might need to go up to near 200 for this however. If you get too many false positives go down
by Chunjee
24 Feb 2024, 01:25
Forum: Wish List
Topic: Make Arrays Useful
Replies: 2
Views: 691

Re: Make Arrays Useful

I also think this would be a great addition
by Chunjee
23 Feb 2024, 16:03
Forum: Скрипты и библиотеки
Topic: array.ahk специальная презентация (v1)
Replies: 2
Views: 514

Re: array.ahk специальная презентация (v1)

Спасибо большое! Я пошел и применил ваш вклад

:thumbup:
by Chunjee
22 Feb 2024, 11:54
Forum: Ask for Help (v1)
Topic: Retriving all cell of a column in an Excel files that contain a specific value Topic is solved
Replies: 8
Views: 363

Re: Retriving all cell of a column in an Excel files that contain a specific value Topic is solved

for arrays I find the for command very useful. It will go through each element in the array https://www.autohotkey.com/docs/v1/lib/For.htm colors := ["red", "green", "blue"] for key, value in colors { msgbox, % value } ; will msgbox "red", then "green", then "blue" the keys are not used in the above...
by Chunjee
22 Feb 2024, 11:25
Forum: Scripts and Functions (v1)
Topic: [Class] expect.ahk (rapid unit testing)
Replies: 23
Views: 4140

Re: [Class] expect.ahk (rapid unit testing)

Haven't forgotten. I did confirm some of the issues however. Thank you
by Chunjee
22 Feb 2024, 11:23
Forum: Scripts e Funções
Topic: array.ahk Apresentação Especial (v1)
Replies: 0
Views: 412

array.ahk Apresentação Especial (v1)

array.ahk https://img.shields.io/npm/dm/array.ahk?style=for-the-badge&logo=npm https://img.shields.io/badge/código-fonte-red?style=for-the-badge&logo=github https://img.shields.io/badge/Documentação-completa-blue?style=for-the-badge https://img.shields.io/badge/licença-MIT-tan?style=for-the-badge C...

Go to advanced search