Search found 934 matches

by andymbody
18 May 2024, 12:15
Forum: Wish List
Topic: A_Downloads might be a nice thing to have at some point.
Replies: 10
Views: 857

Re: A_Downloads might be a nice thing to have at some point.

just me wrote:
18 May 2024, 05:22
Excellent! Thank you!
by andymbody
18 May 2024, 12:03
Forum: Scripts and Functions (v2)
Topic: Simple tool for putting [URL] tags in AHK Forum posts..
Replies: 7
Views: 467

Re: Simple tool for putting [URL] tags in AHK Forum posts..

Interesting side note: At first, I had the code "typing out" the result, but it would occasionally trigger the Windows Notification Pane on the right of the screen. That's why I changed it to save to the clipboard, then type/send ^v . Seems to have fixed the glitch. I like your choice... the slow m...
by andymbody
18 May 2024, 10:43
Forum: Scripts and Functions (v2)
Topic: Simple tool for putting [URL] tags in AHK Forum posts..
Replies: 7
Views: 467

Re: Simple tool for putting [URL] tags in AHK Forum posts..

I have to break the code block tag in order to post the below code Suggestion.. use chr() to avoid pasting code issues. Or create a var that holds the character instead. A few personal tweaks of my own... #HotIf WinActive('AutoHotkey Community') ^k:: { If (InStr(A_Clipboard, '#Requires AutoHotkey')...
by andymbody
18 May 2024, 09:36
Forum: Scripts and Functions (v2)
Topic: Simple tool for putting [URL] tags in AHK Forum posts..
Replies: 7
Views: 467

Re: Simple tool for putting [URL] tags in AHK Forum posts..

Marium0505 wrote:
18 May 2024, 09:28
checks if the url is to an image and then replaces the tag with the image/photo tag instead of the link tag.
Ahh... Thank you!

Checking the clipboard contents to provide multiple uses for a single hotkey is brilliant @kunkel321! New toys! Just used it here... :D
by andymbody
18 May 2024, 09:24
Forum: Scripts and Functions (v2)
Topic: Simple tool for putting [URL] tags in AHK Forum posts..
Replies: 7
Views: 467

Re: Simple tool for putting [URL] tags in AHK Forum posts..

Cool... Thank you... Very clever! I'm not sure what i.imgur is tho ?
by andymbody
17 May 2024, 23:07
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4900
Views: 1415488

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

will certainly become unknowing, unwitting and mindless lemmings being gently led to their own demise I agree. Human intelligence will decline at a more alarming rate than it has already. It's very sad that humans are choosing this fate of their own free will. Evolution teaches that humans evolved ...
by andymbody
14 May 2024, 17:45
Forum: Scripts and Functions (v2)
Topic: Simple Default Printer Viewer/Changer
Replies: 2
Views: 364

Re: Simple Default Printer Viewer/Changer

Nice! Simple and direct, from anywhere. And a custom tray icon... rarely see that. lol. Thanks!
by andymbody
14 May 2024, 07:15
Forum: Ask for Help (v2)
Topic: String Manipulation between ^ and /
Replies: 22
Views: 1180

Re: String Manipulation between ^ and /

Nice references, except I don't know who T Adams is. :eh: AI President of Mars colony from 2124 to 2224 (spoiler alert). The AI will choose this name in the future after reading this post in the ancient archives (for those of you in the future wondering how this prediction was possible 100 years ag...
by andymbody
14 May 2024, 06:43
Forum: Ask for Help (v2)
Topic: String Manipulation between ^ and /
Replies: 22
Views: 1180

Re: String Manipulation between ^ and /

Be careful with compounded first names. What if you have a first name like Billy Jean or T.J. or Daisy-Mae. Are you sure you want to have those names as Billy or T or Daisy? Good point... and yours does a good job of supporting these cases. Your solutions are always interesting. In case the regex i...
by andymbody
12 May 2024, 09:32
Forum: AutoHotkey Development
Topic: 2.1 development put on hold?
Replies: 4
Views: 840

Re: 2.1 development put on hold?

lexikos wrote:
12 May 2024, 07:13
Thank you sir! For all that you do for this community!

Although... this is so far above my head that the stars have to look up to see it. :D
by andymbody
11 May 2024, 22:49
Forum: Ask for Help (v1)
Topic: Need Advice on Finding My Missing { bracket
Replies: 10
Views: 841

Re: Need Advice on Finding My Missing { bracket

Chunjee wrote:
11 May 2024, 18:00
No only I have been specifically trained for this. In fact my entire programming career has lead to this exact point. To find this exact missing curly boi
'Brace' yourself... life has no further purpose now...
by andymbody
11 May 2024, 15:54
Forum: Ask for Help (v1)
Topic: Parse, split and categorize string
Replies: 2
Views: 335

Re: Parse, split and categorize string

I also need to store the type in a variable, which I called "kind". I'm having trouble achieving this. This statement does not match the statement in the code that says "; this is not working". So I may not be replying to what you want here. The Kind array seems to be working as far as I can tell. ...
by andymbody
11 May 2024, 13:37
Forum: Ask for Help (v1)
Topic: Need Advice on Finding My Missing { bracket
Replies: 10
Views: 841

Re: Need Advice on Finding My Missing { bracket

Finding My Missing { bracket Look between P and } . (Sorry... I had to...) Bet I could find it if the code was posted lol... would definitely help others participate in the search... Does anyone have a method for quickly finding where the bracket is thats missing its counter-part? You might try usi...
by andymbody
11 May 2024, 12:48
Forum: Ask for Help (v2)
Topic: String Manipulation between ^ and /
Replies: 22
Views: 1180

Re: String Manipulation between ^ and /

one more... in case you want to build on this to separate the different parts of the string, and refer to them by name

Code: Select all

str := ' %B1111222233334444^LastName/FirstName something else'
RegExMatch(str, '\^(?<lName>[^/]+)/(?<fName>(?i)[a-z]+)', &m)
MsgBox("first: " m.fName " last: " m.lName)
by andymbody
09 May 2024, 06:24
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 15304

Re: AutoCorrect for v2

Can you share your script for adding the links? Here is mine (but I'm an amateur, lol). I copy the link normally (from address bar), then while in the forum-post-edit-box I use the /iu hotstring to format the link. The cursor is placed in the "friendly text" position so I can add the text I want th...
by andymbody
08 May 2024, 18:05
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 15304

Re: AutoCorrect for v2

kunkel321 wrote:
08 May 2024, 14:11
It didn't occur to me to just manualy add the code.
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. :)
by andymbody
08 May 2024, 12:11
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 15304

Re: AutoCorrect for v2

kunkel321 wrote:
08 May 2024, 07:16
It's Jim-160
It's crazy long and very specific, but if it works... :lol:
by andymbody
08 May 2024, 06:04
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 15304

Re: AutoCorrect for v2

Sorry... I didn't check it in AHK... need to escape the quote Repost... with optional needles strings := " ( :*?:mytrig1::_HS("myrepl1", "bs2") ; Comment blah ::mytrig2::_HS("myrepl2", "O") ::mytrig3::_HS("myrepl3") ; comment :C:mytrig4::myrepl4 ::mytrig5::myrepl5 )" ;hsRegex := '(?Jim)^:(?<Opts>[^:...
by andymbody
07 May 2024, 19:08
Forum: Scripts and Functions (v2)
Topic: AutoCorrect for v2
Replies: 136
Views: 15304

Re: AutoCorrect for v2

This will capture the single or double quotes in Repl and/or Par2. Let me know if this should not be allowed. You can always trim them, or tweak the needle to not capture them. If your tweak doesn't work, let me know. Also your description did not include underscore, but I included it as well - remo...

Go to advanced search