Search found 626 matches

by Delta Pythagorean
12 Feb 2024, 21:48
Forum: Scripts and Functions (v2)
Topic: Extend Your Scripts/Programs with Lua!
Replies: 4
Views: 1917

Re: Extend Your Scripts/Programs with Lua!

@vmech
I wanted to make it clear that it returned NULL as null in C is a void pointer, pointing to 0.
by Delta Pythagorean
31 Dec 2023, 15:33
Forum: Scripts and Functions (v2)
Topic: Extend Your Scripts/Programs with Lua!
Replies: 4
Views: 1917

Re: Extend Your Scripts/Programs with Lua!

lkwryA wrote:
23 Dec 2023, 08:20
My personal wishes are:
what abt [...] Lua v5.1 support ?
Why? Something wrong with 5.4? Never understood why people want to downgrade a language.
by Delta Pythagorean
09 Nov 2023, 17:07
Forum: Scripts and Functions (v1)
Topic: A Multi-Purpose, Multi-Media Player
Replies: 11
Views: 2954

Re: A Multi-Purpose, Multi-Media Player

@joekingcool
I recommend Avidemux, it allows you to trim individual videos and append new clips (if you want) together into one big video to export.
by Delta Pythagorean
27 Oct 2023, 16:04
Forum: Scripts and Functions (v2)
Topic: Extend Your Scripts/Programs with Lua!
Replies: 4
Views: 1917

Extend Your Scripts/Programs with Lua!

Lua.ahk You heard that right. This took way too freaking long for me and gave me several headaches, but it's finally here. Please do note, I do not have all functions added. Just a lot of the basics and some advanced ones. /** * # Lua.ahk * Extend *your* AHK program with Lua! * * ## Requirements * ...
by Delta Pythagorean
09 May 2023, 09:01
Forum: General Discussion
Topic: Feedback
Replies: 2
Views: 767

Re: Feedback

That's windows itself. If the maximize box is disabled and the minimize box is hidden, both buttons are hidden. However if the maximize button is enabled (such as using +Resize ), the minimize button is hidden but the maximize button is still shown. Again, windows itself controls this. I did find t...
by Delta Pythagorean
15 Feb 2023, 08:31
Forum: Ask for Help (v2)
Topic: [v2.0.2] A_MyDocuments set to blank
Replies: 1
Views: 308

Re: [v2.0.2] A_MyDocuments set to blank

After review on the AHK discord, I've learned that I did not in fact entirely remove OneDrive from my computer. Within the registry Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders there exists the Personal key-value pair. The value was set to the OneD...
by Delta Pythagorean
15 Feb 2023, 08:10
Forum: Ask for Help (v2)
Topic: [v2.0.2] A_MyDocuments set to blank
Replies: 1
Views: 308

[v2.0.2] A_MyDocuments set to blank

As of currently, the variable A_MyDocuments is giving a blank result. Also, if it's of any help, I'm running windows 11 with OneDrive "aggressively" uninstalled. I've uninstalled it normally and deleted several folders that OneDrive creates (such as the useless Documents folder). Here's just a test ...
by Delta Pythagorean
09 Jan 2023, 00:31
Forum: Scripts and Functions (v2)
Topic: Std——Build personal built-in functions similar to python
Replies: 5
Views: 1091

Re: Std——Build personal built-in functions similar to python

There's several things about this that I like. However the with idea could be done as a class and instead of explicitly calling _with , you could have __Delete be the closing block. Or, by using __Enum , you could use a for-loop to enclose a with block: for file in with(open("test.txt", "rw") { if (...
by Delta Pythagorean
09 Dec 2022, 04:54
Forum: Scripts and Functions (v1)
Topic: Building and Testing Functions the Smart Way
Replies: 2
Views: 554

Re: Building and Testing Functions the Smart Way

You can simplify that if statement to if (A_LineFile == A_ScriptFileFullPath). This checks if the current file is the same string as the full, initial file ran. Basically AHK's version of if __name == '__main__':
by Delta Pythagorean
09 Nov 2022, 03:27
Forum: Ask for Help (v1)
Topic: Autocomplete a combobox in GUI
Replies: 9
Views: 4880

Re: Autocomplete a combobox in GUI

likethevegetable wrote:
08 Nov 2022, 20:50
Long time but reviving this.. I'm slightly confused as to how this works for an Edit control--there are no provided words to choose from.
The thing is with an edit control, the control doesn't have a set list of words to choose from. The ComboBox, however, does.
by Delta Pythagorean
15 Jun 2022, 03:06
Forum: General Discussion
Topic: Good coders gone wild!
Replies: 13
Views: 9923

Re: Good coders gone wild!

Forgive me father for I have sinned. name= ;//Enter your name here!!! email= ;//Enter your email here!!! password= ;//Enter your password here, don't tell anyone!!! setBatchLines,100 ;// Add 100 milliseconds in between each command. goTo,AutoExecSection ;// Go to the AutoExecSection label. ;// Auto ...
by Delta Pythagorean
23 Apr 2022, 16:00
Forum: Scripts and Functions (v1)
Topic: A little function to read all variables from ini file
Replies: 5
Views: 1874

Re: A little function to read all variables from ini file

I have my own version that does not require to be global variables, parses to objects, and allows for great customization. /* name ------ : ini.ahk description : Parse INI configuration text or dump an object as INI configuration text. author ---- : TopHatCat version --- : v1.0.0 date ------ : 22-01...
by Delta Pythagorean
10 Mar 2022, 17:03
Forum: Bug Reports
Topic: It seems arrays have a limit Topic is solved
Replies: 3
Views: 1069

Re: It seems arrays have a limit Topic is solved

Arrays don't have a .Length property but a .Length() method. There's also a .Count() and .MaxIndex().
by Delta Pythagorean
03 Mar 2022, 14:23
Forum: Off-topic Discussion
Topic: Theories about variables in the AutoHotkey
Replies: 8
Views: 1924

Re: Theories about variables in the AutoHotkey

1. Program Units: Could also be modules , might be classes or routines usually #include d in a project.. 2. Sequential command: Commands issued in sequence as opposed to commands originating from different threads? 3. Collateral command: Possibly related to this from Wikipedia [...] 4. Conditional ...
by Delta Pythagorean
02 Mar 2022, 17:41
Forum: Off-topic Discussion
Topic: Theories about variables in the AutoHotkey
Replies: 8
Views: 1924

Re: Theories about variables in the AutoHotkey

This is all I know, and all I can decipher from what you've asked. Go nuts. Temporary Variables AHK's scope of Local variables are the closest to temporary. Persistent Variables Static variables are just local variables that stay in between calls of a function/method. Globals stay as long as the scr...
by Delta Pythagorean
24 Jan 2022, 13:43
Forum: Scripts and Functions (v2)
Topic: WinGetListAlt() : Returns list of Alt+Tab windows
Replies: 10
Views: 3860

Re: WinGetListAlt() : Returns list of Alt+Tab windows

SKAN wrote:
23 Jan 2022, 04:30
If you want maintain a window-list of task-bar , then "SHELLHOOK" exists specifically for that purpose.
Attempting the same with window-list of task-switcher would be error prone and also not worth of the effort put... IMO.
Touché.
Also I completely forgot about SHELLHOOK lol.
by Delta Pythagorean
23 Jan 2022, 00:19
Forum: Scripts and Functions (v2)
Topic: WinGetListAlt() : Returns list of Alt+Tab windows
Replies: 10
Views: 3860

Re: WinGetListAlt() : Returns list of Alt+Tab windows

Could there possibly be a way to cache the windows and do a check for new values or removed ones to save on memory? ... What I mean is, on the first run of the function, it get's the full list of windows. The second run of the function, it only gets changes, such as if there's new windows or if prev...
by Delta Pythagorean
21 Jan 2022, 15:50
Forum: Off-topic Discussion
Topic: AHK - Once Upon A Time ...
Replies: 14
Views: 2724

Re: AHK - Once Upon A Time ...

Why the discontinue? A lot of those look really nice!
by Delta Pythagorean
27 Nov 2021, 09:19
Forum: Ask for Help (v1)
Topic: Send ñ or Ñ
Replies: 6
Views: 1757

Re: ñ'Ñ'

I don't know what this post is implying... I would guess you meant to post a reply to another thread and it didn't work?
by Delta Pythagorean
20 Nov 2021, 21:06
Forum: Wish List
Topic: [v2] Check for if var is callable function Topic is solved
Replies: 6
Views: 2306

Re: [v2] Check for if var is callable function Topic is solved

I did state that I'd rather this be built-in than to include there anywhere I needed it but in the meantime this could work.

Go to advanced search