Search found 1033 matches

by kunkel321
Yesterday, 20:48
Forum: Ask for Help (v2)
Topic: Best way to ensure single instance of GUI?
Replies: 5
Views: 95

Re: Best way to ensure single instance of GUI?

These are all excellent approaches. Thanks Folks!
by kunkel321
Yesterday, 20:47
Forum: Off-topic Discussion
Topic: Beginner to VSCode/GitHub/GitDeskop.
Replies: 10
Views: 332

Re: Beginner to VSCode/GitHub/GitDeskop.

andymbody wrote:
Yesterday, 20:26
I am also new to GitHub. Are you aware of the GitHub learning lab?
Very cool! Have you been using this?
by kunkel321
Yesterday, 10:06
Forum: Ask for Help (v2)
Topic: Best way to ensure single instance of GUI?
Replies: 5
Views: 95

Best way to ensure single instance of GUI?

With some help from gpt, then some additional tweaking, I got the below code working. Is this the best way to ensure that I don't get multiple instances of g2? (Assume that the user clicks the g1 'make' button over and over.) It occurs to me to keep g2 in RAM and just show/hide it... Should I do tha...
by kunkel321
Yesterday, 09:26
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 99
Views: 8975

Re: AutoCorrect for v2

d_romeo wrote:
Yesterday, 08:55
Is the word-by-word correction list available as an alternative, like in the old version v1?
Not sure what you mean... If you mean the list of 'whole-word' autocorrect items from the original 2007 AutoCorrrect.ahk, check the very first post in this thread.
by kunkel321
Yesterday, 07:53
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 99
Views: 8975

Re: AutoCorrect for v2

Incidentally... Typing the above reply made me realize that my "no sort" block of items near the top of the ac entries (but below the 'nullification' items) includes several word beginnings and middles. If word beginnings or middles can't be nullification items... How can those items coexist with th...
by kunkel321
Yesterday, 07:43
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 99
Views: 8975

Re: AutoCorrect for v2

d_romeo There's not really an "ignore list" though the section near the top of the autocorrect items that looks like this: ; ===== Trigger strings to nullify the potential misspellings that are indicated. ====== ; Used the word "corrects" in place of fix to avoid double-counting these as potential ...
by kunkel321
14 Apr 2024, 09:56
Forum: Ask for Help (v2)
Topic: How to change where a window will apear
Replies: 14
Views: 236

Re: How to change where a window will apear

Interesting idea, could be tested for various windows and programs. Another thought is to use the script to actually run the target app, but force it to start minimized. I'm not sure if that would help, though... Does Windows actually "create" the necessary application window when it starts the app...
by kunkel321
14 Apr 2024, 09:32
Forum: Ask for Help (v2)
Topic: How to change where a window will apear
Replies: 14
Views: 236

Re: How to change where a window will apear

Here are some ideas for a work-around... I got the idea from here https://www.autohotkey.com/boards/viewtopic.php?f=83&t=119688 I'm not sure I've used the commands/functions correctly though... Firstly, I experimented with just the SetWinDelay , using it with Notepad. I didn't see a big difference i...
by kunkel321
13 Apr 2024, 15:08
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 99
Views: 8975

Re: AutoCorrect for v2

Okay... I think I've managed to correctly make a GitHub repository for this project. I'm still new to GitHub, so bare with me as I continue learning to use it correctly.
https://github.com/kunkel321/AutoCorrect2
by kunkel321
13 Apr 2024, 10:29
Forum: Off-topic Discussion
Topic: Beginner to VSCode/GitHub/GitDeskop.
Replies: 10
Views: 332

Re: Beginner to VSCode/GitHub/GitDeskop.

@kunkel321, I use VSCode and there you need 1) navigate to the "Source Control" tab which houses the GitHub plugin 2) stage the files you want to commit by pressing the "+" icon next to the modified files 3) type in a commit message and press Commit 4) perhaps do some more commits if you want, or a...
by kunkel321
13 Apr 2024, 10:08
Forum: General Discussion
Topic: Have Gui functions.. Anybody interested in me publishing?
Replies: 1
Views: 44

Re: Have Gui functions.. Anybody interested in me publishing?

whoops wrote:
02 Apr 2024, 17:19
I have a library of gui functions built up over the last couple of apps I've made.
Just wondering how much community interest there would be before I clean up all the functions to run standalone and document them.
I think that would be awesome!
by kunkel321
13 Apr 2024, 10:06
Forum: General Discussion
Topic: A Github organisation for ahkscript
Replies: 247
Views: 185735

Re: A Github organisation for ahkscript

Add kunkel321 please :)
by kunkel321
12 Apr 2024, 12:21
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 99
Views: 8975

Re: AutoCorrect for v2

You can drop your logging function into _HS, rename it f(), and you should be good to go. I did it yesterday evening and everything seems to be doing great. I have been experiencing some issues with an incorrect number of backspaces being sent (particularly with very short hotstrings, e.g., :B0XC:i...
by kunkel321
11 Apr 2024, 18:25
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 99
Views: 8975

Re: AutoCorrect for v2

@kunkel321 - I have been going through the process of converting my _HS() hotstrings to call your f() function. One of the major problems is sorting. Do you have any recommendations in terms of how to order the various option sets to avoid nullification (e.g., beginnings, middles, ends / :*:, :*?:,...
by kunkel321
10 Apr 2024, 15:59
Forum: Off-topic Discussion
Topic: Beginner to VSCode/GitHub/GitDeskop.
Replies: 10
Views: 332

Re: Beginner to VSCode/GitHub/GitDeskop.

What is the best way to record a "history of versions"? I tried making a sample.ahk file, then pushing it to its repo. Then I kept making changes and pushing/committing it after each edit. When I go to the github site, though, I can only see the two most recent versions.
by kunkel321
10 Apr 2024, 15:56
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 99
Views: 8975

Re: AutoCorrect for v2

FYI - in the making of this little tool https://abbreviation-finder.streamlit.app - I discovered espanso. It's neat. Its cross platform (win, Linux, Mac) and Free and Opensource. Some of the packages look similar to this AutoCorrect tool e.g https://hub.espanso.org/typofixer-en https://hub.espanso....
by kunkel321
09 Apr 2024, 15:06
Forum: Ask for Help (v2)
Topic: "Expected a string, but got a function..."
Replies: 2
Views: 113

"Expected a string, but got a function..."

I'm still new to fat arrow functions... I want the value of bbAuto to change the instant the checkbox is checked/unchecked. I've run into the error before, but I'm having a hard time understanding what causes it... global bbAuto := 0 bb.Add('Checkbox', 'x+5 Checked' var, 'Auto Lookup`nin editor').On...
by kunkel321
09 Apr 2024, 08:12
Forum: Ask for Help (v2)
Topic: Annoying issue with capitals.
Replies: 2
Views: 35

Re: Annoying issue with capitals.

e.g. ::Teh::The ::teh::the If I type 'teh' it is always corrected to 'The'. As Mike said, adding the C to each :C:Teh::The :C:teh::the would solve the problem. Also note: Without the C , the AHK engine would consider those as duplicate hotstring triggers... And with duplicate hotstring triggers, wh...
by kunkel321
09 Apr 2024, 07:57
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 99
Views: 8975

Re: AutoCorrect for v2

Yeah some shouldn't be there, like: ::it's final::its final Yeah I had a bunch of it's ... --> its ... ones in previous versions of the AutoCorrct2 script. (Including that one.) I think most were introduced with this Wikipedia grammar list https://www.autohotkey.com/boards/viewtopic.php?f=6&t=11896...
by kunkel321
08 Apr 2024, 15:15
Forum: Off-topic Discussion
Topic: Beginner to VSCode/GitHub/GitDeskop.
Replies: 10
Views: 332

Re: Beginner to VSCode/GitHub/GitDeskop.

Actually... It occurred to me to just use "incognito mode" in Chrome, then download the zip as though I were a different person... All good. Code seems to work as expected. Now I want to experiment a bit with branching and merging. Once I can do that, I'll see about getting that AutoCorrect project ...

Go to advanced search