Search found 1027 matches

by TheArkive
31 Jan 2024, 18:30
Forum: Ask for Help (v2)
Topic: Simple enumeration Topic is solved
Replies: 10
Views: 2206

Re: Simple enumeration Topic is solved

Thanks for this. This helped me understand making a custom __Enum method. I'd like to offer some further deconstruction for someone who may have struggled with this like I did. This first example is very verbose, but explains the elements that need to happen in order to make a custom __Enum method. ...
by TheArkive
04 Jan 2024, 12:30
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1393032

Re: « What's on your mind? » Topic is solved

After 34 Years, Someone Finally Beat Tetris https://www.youtube.com/watch?v=GuJ5UuknsHU Full article: https://www.techspot.com/news/101383-13-year-old-first-human-beat-tetris.html I found this to be quite fascinating. The top video is a good summary about the history of Tetris and the competition ar...
by TheArkive
20 Dec 2023, 11:49
Forum: Scripts and Functions (v2)
Topic: Socket Class - 2022/09/07 - beta.8
Replies: 32
Views: 8651

Re: Socket Class - 2022/09/07 - beta.8

@Black_dog

Thanks for the post, I'll look into it.

In case you have more time to experiment before I get to it, my first thought is that maybe the port is no longer open? But I don't actually have a method that will check for specific port availability currently. That is a loose "To-Do" item.
by TheArkive
09 Dec 2023, 19:11
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1393032

Re: « What's on your mind? » Topic is solved

@garry ... that is some beautiful poetry :lol:
by TheArkive
07 Dec 2023, 11:17
Forum: Scripts and Functions (v1)
Topic: Buffer() for AHK v1.1
Replies: 2
Views: 648

Buffer() for AHK v1.1

User just me has made a similar script here . His work is always good, so if you want a 2nd opinion on doing this in AHK v1.1, then I suggest you check out his script also. [hr] Pick one, NOT both, to use in your scripts. Returned Buffer objects are the size they should be, since malloc is not used ...
by TheArkive
06 Oct 2023, 05:48
Forum: Notepad++
Topic: Notepad++ Syntax Highlight, AutoComplete - AHK v1 & v2 - 2023/10/05
Replies: 41
Views: 39885

Re: Notepad++ Syntax Highlight, AutoComplete - AHK v1 & v2 - 2023/10/05

2023/10/06
  • fixed alignment for 2nd page in RegExReplace
  • corrected phrasing of help for SubStr()
  • fixed unintended instances of &Play& instead of "Play" ... o_O (brain fry)
by TheArkive
05 Oct 2023, 08:11
Forum: Notepad++
Topic: Notepad++ Syntax Highlight, AutoComplete - AHK v1 & v2 - 2023/10/05
Replies: 41
Views: 39885

Re: Notepad++ Syntax Highlight, AutoComplete - AHK v1 & v2 - 2023/10/05

2023/10/05
  • moved files to github
  • added Auto-Complete for AHK v2.0.10
by TheArkive
01 Oct 2023, 08:12
Forum: Notepad++
Topic: Notepad++ Syntax Highlight, AutoComplete - AHK v1 & v2 - 2023/10/05
Replies: 41
Views: 39885

Re: Notepad++ Syntax Highlight (Dark/Light Theme) - AHK v1 & v2 - 2023/09/30

I use Npp v8.5.7 (latest). I also updated the op with the UDL settings i use currently. Did you try those?
by TheArkive
30 Sep 2023, 10:32
Forum: Notepad++
Topic: Notepad++ Syntax Highlight, AutoComplete - AHK v1 & v2 - 2023/10/05
Replies: 41
Views: 39885

Re: Notepad++ Syntax Highlight (Dark Theme) - AHK v1/2 combined - 2020/07/02

I guess it's time for an update. Mine currently doesn't do that.
by TheArkive
12 Sep 2023, 00:30
Forum: Ask for Help (v2)
Topic: Math syntax parsing issue Topic is solved
Replies: 64
Views: 4178

Re: Math syntax parsing issue Topic is solved

This seems very reminiscent of AHK v1, the whole +0 thing. Oh the memories :D
by TheArkive
10 Sep 2023, 08:26
Forum: Ask for Help (v2)
Topic: Math syntax parsing issue Topic is solved
Replies: 64
Views: 4178

Re: Math syntax parsing issue Topic is solved

Thanks for the in-depth explanation lexikos. I've certainly moved on to writing less ambiguous expressions, and it's interesting to see the inner workings of AHK explained, and see possible future trajectories for its development.
by TheArkive
09 Sep 2023, 03:55
Forum: Ask for Help (v2)
Topic: Math syntax parsing issue Topic is solved
Replies: 64
Views: 4178

Re: Math syntax parsing issue Topic is solved

Yah, that's what I ended up doing as well. Very interesting discourse. An opinion was even changed :-P
by TheArkive
08 Sep 2023, 01:51
Forum: Ask for Help (v2)
Topic: Math syntax parsing issue Topic is solved
Replies: 64
Views: 4178

Re: Math syntax parsing issue Topic is solved

i := 1 arr := [++i, ++i] ; = [3, 3] That's interesting. Didn't expect that one. I would have thought the comma would have split up the expression, but that seems to not be the case. It's not without logic though. Thinking back to thqby's explanation, it makes sense as to why, given that all of this...
by TheArkive
07 Sep 2023, 23:05
Forum: Ask for Help (v2)
Topic: Math syntax parsing issue Topic is solved
Replies: 64
Views: 4178

Re: Math syntax parsing issue Topic is solved

That's why i used ++d . The docs explain this so far as i can tell: Var := X++ increments X but Var receives the value X had before it was incremented. Come to think of it, this is the first time I've used ++ in an expression. Usually it's a single parameter. thqby-s description certainly makes sens...
by TheArkive
07 Sep 2023, 11:42
Forum: Ask for Help (v2)
Topic: Math syntax parsing issue Topic is solved
Replies: 64
Views: 4178

Re: Math syntax parsing issue Topic is solved

Doesn't matter to me either way. I can of course write the expression differently. I'm just trying to figure out what's supposed to happen.
by TheArkive
07 Sep 2023, 10:39
Forum: Ask for Help (v2)
Topic: Math syntax parsing issue Topic is solved
Replies: 64
Views: 4178

Math syntax parsing issue Topic is solved

Not sure if this is a bug or not: d := 1 msgbox ((d) * (++d) * (++d)) ; --------------------------- ; Test5.ahk ; --------------------------- ; 12 ; --------------------------- ; OK ; --------------------------- I would think it would return 6 (1 x 2 x 3). Or is this not the right way to use that op...
by TheArkive
15 Aug 2023, 13:34
Forum: Ask for Help (v2)
Topic: Something with the download page changed recently?
Replies: 12
Views: 1178

Re: Something with the download page changed recently?

lexikos Yes I certainly would prefer to use the GibHub API. As neogna2 said, it would be nice if the zip files could be included on GitHub, if possible. Or if there could be a switch on the installer to only extract, that would work equally well for my uses, then the zip would not be necessary. EDI...

Go to advanced search