Search found 56 matches

by ItisI
05 Jul 2023, 05:52
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Re: Creating a RegEx-script

Yes of course, I made a mistake - uhm - I committed an error <- here it is again ;) the mistake being not reading the documentation . My wisdom started with recognizing my error (sic), and then reading your fabulous documentation. Let us be precise: the start is a very short point (If a point can be...
by ItisI
05 Jul 2023, 04:51
Forum: Off-topic Discussion
Topic: Report False-Positives To Anti-Virus Companies
Replies: 121
Views: 1001821

Re: Report False-Positives To Anti-Virus Companies

This is a project and probably useless. All my emails are gmails - sending the files will never work. I'll think about it a bit more, maybe I'll come up with something. ----- What I would like to suggest in the meantime: short article about the situation referring to the existing article ( https://w...
by ItisI
05 Jul 2023, 03:20
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Re: Creating a RegEx-script

Thanks, that'll take getting used to...
Wisdom starts with an error :D
by ItisI
05 Jul 2023, 03:15
Forum: Off-topic Discussion
Topic: Report False-Positives To Anti-Virus Companies
Replies: 121
Views: 1001821

Re: Report False-Positives To Anti-Virus Companies

virus - false positives - AHK Reporting false detection to antivirus providers Spent the last 90 minutes trying to contact the vendors on the VirusTotal page that reported malware and also found on your list (announcement). The results are discouraging as I achieved virtually nothing. So sorry, but...
by ItisI
05 Jul 2023, 02:21
Forum: Off-topic Discussion
Topic: Report False-Positives To Anti-Virus Companies
Replies: 121
Views: 1001821

Re: Report False-Positives To Anti-Virus Companies

Here's the first set-back: gMail won't let me upload the "infected" file...
by ItisI
05 Jul 2023, 02:11
Forum: Off-topic Discussion
Topic: Report False-Positives To Anti-Virus Companies
Replies: 121
Views: 1001821

Re: Report False-Positives To Anti-Virus Companies

I'm already on it. Working down the list, and if I detect a German company, I'll use my German aswell. Will report back on the issue.
by ItisI
05 Jul 2023, 01:45
Forum: Off-topic Discussion
Topic: Report False-Positives To Anti-Virus Companies
Replies: 121
Views: 1001821

Re: Report False-Positives To Anti-Virus Companies

That's the point. If it's a false positive, only the false-positive-issuing company can correct their assessment. If they never get asked, they might never check again. The point of reporting false-positives is to ask those companies to re-evaluate their results (and to correct them) - no one else ...
by ItisI
05 Jul 2023, 01:27
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Re: Creating a RegEx-script

boiler Beeuutiful :) And thank you very much for relaxing your rules. Much obliged. mikeyww replacement := '[[$1]] - $2' Why don't you have to escape the square brackets like so: replacement := '\[\[$1\]\] - $2' The code works fine, but the question hit me last night... And to the both of you: than...
by ItisI
05 Jul 2023, 01:14
Forum: Off-topic Discussion
Topic: Report False-Positives To Anti-Virus Companies
Replies: 121
Views: 1001821

Re: Report False-Positives To Anti-Virus Companies

But I do not have the qualifications to determine if these are false positives. I can't report to anyone, "These are false positives". That can only be done by someone who has the expertise and has done the necessary testing and investigation . I am a simple end user . I use VirusTotal and Jotti to ...
by ItisI
04 Jul 2023, 11:30
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Re: Creating a RegEx-script

Still trying not to be nosy (needed to show I know the right spelling) - I'm actually only interested in the depicted animal - a griffin, an eagle, a lion, a ...
by ItisI
04 Jul 2023, 10:06
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Re: Creating a RegEx-script

@boiler
I'm try not to be nose, rarely succeed: What is it and what ideals does it represent?
by ItisI
04 Jul 2023, 10:01
Forum: Off-topic Discussion
Topic: Report False-Positives To Anti-Virus Companies
Replies: 121
Views: 1001821

Re: Report False-Positives To Anti-Virus Companies

Hi folks :) I am both new to AHK and this forum - it is a great place to be, get help and learn. Thank you very much. Now: I would very much like to install the software, but I am not a coder, nor a tekkie person at all. I use software, a lot of it, I know my way around - but of course, I cannot jud...
by ItisI
04 Jul 2023, 09:22
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Re: Creating a RegEx-script

Thank you :) Added - Send "^a" - Send "^c" - and "ClipWait" from the example. Is the code correct? #Requires AutoHotkey v2.0 A_Clipboard := "" ; Empty the clipboard Send "^a" Send "^c" if !ClipWait(2) { MsgBox "The attempt to copy text onto the clipboard failed." return } F3:: { ; F3 = Transform cli...
by ItisI
04 Jul 2023, 08:11
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Re: Creating a RegEx-script

Thank you very much! So, if I wanted to bypass CTRL+V to insert the transformed text I would add Send, A_Clipboard before "SoundBeep 1500" like so: #Requires AutoHotkey v2.0 F3:: { ; F3 = Transform clipboard text Static needleRegEx := '(.+?)\t.+\t(.+)' , replacement := '[[$1]] - $2' haystack := A_Cl...
by ItisI
04 Jul 2023, 03:26
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Re: Creating a RegEx-script

Thank you very much for your help! That's something! You've summed up all my efforts - and I was quite proud of them - in a single line. And it works - tested it in Brackets "Search & Replace". Admit it: you've done this before, haven't you? MsgBox fixed := RegExReplace(A_Clipboard, '(.+?)\t.+\t(.+)...
by ItisI
03 Jul 2023, 12:06
Forum: Ask for Help (v2)
Topic: Creating a RegEx-script
Replies: 39
Views: 1973

Creating a RegEx-script

Hi :) I'm a member since 5 minutes ago and already shouting for help. :o I learned about AHK mayby 3-4 days ago and have been watching at least 8-10 hours worth of YouTube-videos on AHK. I believe it is the right tool to solve one of my "hottest" issues. I'm building up a multimedia reference (priva...

Go to advanced search