Search found 1101 matches

by kunkel321
09 May 2024, 14:06
Forum: Ask for Help (v2)
Topic: Progressive removal of text in Text Control?
Replies: 5
Views: 287

Re: Progressive removal of text in Text Control?

Teadrinker pointed out that, for the right-to-left trimming, the spaces don't really need to be added back. Keeping that in mind, I came up with the below... It's not as elegant as the Teadrinker regex solution, and probably not as efficient/fast, but it is easier to understand -- LOL. I made the GU...
by kunkel321
09 May 2024, 12:18
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 14132

Re: AutoCorrect for v2

andymbody wrote:
09 May 2024, 06:24
Very nice! Hotstrings can indeed be 'context specific' with #HotIf.
by kunkel321
09 May 2024, 12:02
Forum: Ask for Help (v2)
Topic: Progressive removal of text in Text Control?
Replies: 5
Views: 287

Re: Progressive removal of text in Text Control?

teadrinker wrote:
08 May 2024, 22:15
Thanks for this, Teadrinker! It works well. Very enigmatic though.
by kunkel321
09 May 2024, 12:00
Forum: Ask for Help (v2)
Topic: tray icons usage Topic is solved
Replies: 9
Views: 350

Re: tray icons usage Topic is solved

what do you mean? after making them in svg, i scale them to let's say 256x256 png then convert png to ico. and pretty sure then windows downscales it to 16x16 or whatever scale it needs for the taskbar. works for me Yep -- Again, same here. I think the downscaling that Windows does is probably the ...
by kunkel321
09 May 2024, 11:32
Forum: Ask for Help (v2)
Topic: tray icons usage Topic is solved
Replies: 9
Views: 350

Re: tray icons usage Topic is solved

marypoppins_1 wrote:
09 May 2024, 08:28
yeah okay thank you. i'm currently working on making my own icons too but in svg then i can make them any size without losing quality and convert to .ico
Yeah, I always make mine as SVGs too. Converting them to ICO always "rasterizes" them though.
by kunkel321
09 May 2024, 07:54
Forum: Ask for Help (v2)
Topic: tray icons usage Topic is solved
Replies: 9
Views: 350

Re: tray icons usage Topic is solved

Another argument for using .ICO files is that, if your script has any GUIs that appear, Windows will apply your custom icon to the GUI as well. The icon in the top corner will also be 16x16, but probably an icon will appear in the Windows Taskbar at the bottom, while the GUI window is open. The Task...
by kunkel321
08 May 2024, 19:42
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 14132

Re: AutoCorrect for v2

Maybe you can make a hotstring! (for mention). That's what I did for the '=' version of links on here (paste link from clipboard). You helped me learn that... thank you btw. :) You are welcome! Can you share your script for adding the links? I've been meaning to make one (since there isn't a toolba...
by kunkel321
08 May 2024, 19:35
Forum: Ask for Help (v2)
Topic: Progressive removal of text in Text Control?
Replies: 5
Views: 287

Re: Progressive removal of text in Text Control?

Awesome Thanks! Really trippy how you got it to work. Sorry for "changing the question" mid thread, but I'm trying to use the parts like Lego blocks and rearrange them so that there's a second function that trims the same text control... But right-to-left. It does trim the first word (rather the LA...
by kunkel321
08 May 2024, 14:21
Forum: Ask for Help (v2)
Topic: Progressive removal of text in Text Control?
Replies: 5
Views: 287

Progressive removal of text in Text Control?

The code makes a gui with some text. I'd like to (upon keypress) progressively remove the text string, character by character, left-to-right, and have them replaced with space characters. With the below code, the first character works, but then it stops. It seems like each call of the function shoul...
by kunkel321
08 May 2024, 14:11
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 14132

Re: AutoCorrect for v2

gregster wrote:
08 May 2024, 12:36
@kunkel321, for a real mention, you need mention-tags around the user name. ..
Yeah, usually I just type the @fistletters and the popup up appears (though there is often a long delay). It didn't occur to me to just manualy add the code. :lol:
EDIT: There we go! :D
by kunkel321
08 May 2024, 12:25
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 14132

Re: AutoCorrect for v2

andymbody wrote:
08 May 2024, 12:11
It's crazy long and very specific, but if it works... :lol:
It works well! FYI, I tried to tag you here:
viewtopic.php?f=83&t=122865&p=571026#p571026
but the tag didn't seem to work.
by kunkel321
08 May 2024, 12:22
Forum: Scripts and Functions (v2)
Topic: Buffered hotstrings
Replies: 11
Views: 1469

Re: Buffered hotstrings

Here is a version of Hotstring Helper for use with the _HS() function. https://i.imgur.com/j9vvy1t.png AutoCorrect_HS.zip The zip contains this script: #requires AutoHotkey v2 ; #MaxThreadsPerHotkey needs to be higher than 1, otherwise some hotstrings might get lost ; if their activation strings wer...
by kunkel321
08 May 2024, 07:16
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 14132

Re: AutoCorrect for v2

andymbody wrote:
08 May 2024, 06:04
Awesome! It's Jim-160. Thank you Good Sir. I'll tag you when this gets posted.
by kunkel321
07 May 2024, 20:57
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 14132

Re: AutoCorrect for v2

Awesome! I'm trying the second one. I think the quote symbols are messing it up though.. I'm getting this error Error: Unexpected "]" Text: hsRegex := "(?Jim)^:(?<Opts>[^:]+)*:(?<Trig>[^:]+)::(?:(?<hs>_HS\((?<Repl>[\w'"-… Line: 253 File: D:\AutoHotkey\MasterScript\AutoCorrect_HS.ahk The program will...
by kunkel321
07 May 2024, 18:56
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 14132

Re: AutoCorrect for v2

andymbody wrote:
07 May 2024, 18:21
kunkel321 wrote:
07 May 2024, 17:50
if you are up for it/have time....
I assume Par2 is supposed to capture the second parameter ?
Yes, please. Remember that it's optional. letters/numbers/hyphens.
by kunkel321
07 May 2024, 17:50
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 14132

Re: AutoCorrect for v2

My hotstrings are all in ::trigger::_HS("replacement",% backspaceCount) format. Do you have any recommendations for how to reconcile with the new format? If we want an _HS() version of hh2, we'll need to see if andymbody will make a related version of the big regex for us... Correct me if I am wron...
by kunkel321
07 May 2024, 11:31
Forum: Ask for Help (v2)
Topic: Odd hotstring behavior. XXwholeword triggers...
Replies: 4
Views: 247

Re: Odd hotstring behavior. XXwholeword triggers...

Okey dokey. Near the top of the HotstringsLib.ahk is this line of code: #Hotstring Z ; The Z causes the end char to be reset after each activation Because of that, and because the CAse FIxer script works via hotstrings, any two capital letters will cause the hotkey recognizer to be reset. In theory,...
by kunkel321
06 May 2024, 19:49
Forum: Ask for Help (v2)
Topic: Odd hotstring behavior. XXwholeword triggers...
Replies: 4
Views: 247

Re: Odd hotstring behavior. XXwholeword triggers...

Alright... Sorry for the false alarm. It is specific to my AutoCorrect2.ahk script. I changed the accompanying (portable) AutoCorrect.exe to the latest: v2.0.14. If I add the hotstring to my ac2 file, it happens every time. I made a test script though, with nothing but #SingleInstance #Requires Auto...
by kunkel321
06 May 2024, 19:31
Forum: Ask for Help (v2)
Topic: Odd hotstring behavior. XXwholeword triggers...
Replies: 4
Views: 247

Re: Odd hotstring behavior. XXwholeword triggers...

Strange... I'm getting inconsistent results with v2.0.2. With v2.0.1.0 it happens consistently. That's my main master script with all my stuff in it though... At first I assumed it was the below code, but I totally commented it out, and still saw the error. I'll get the latest AutoHotkey.exe, and tr...
by kunkel321
06 May 2024, 17:15
Forum: Ask for Help (v2)
Topic: Odd hotstring behavior. XXwholeword triggers...
Replies: 4
Views: 247

Odd hotstring behavior. XXwholeword triggers...

An interesting thing with hotstrings... With an example like this ::biz::wap If you type "xxbiz" then an end char, it doesn't replace. This is because there is no ? in the options :?:biz::wap , thus allowing it to be a word-ending match. However, it appears that if you start with two capitals, like ...

Go to advanced search