Search found 265 matches

by carno
26 Jan 2022, 06:15
Forum: Ask for Help (v1)
Topic: Another RegEx Question Topic is solved
Replies: 6
Views: 766

Re: Another RegEx Question Topic is solved

teadrinker wrote:
26 Jan 2022, 06:04
Can be par before per? What do you want to get as a result?
In this case order does not matter. Either way only both conditions must be met.
by carno
26 Jan 2022, 05:35
Forum: Ask for Help (v1)
Topic: Another RegEx Question Topic is solved
Replies: 6
Views: 766

Another RegEx Question Topic is solved

I try to combine the following 2 Positive Lookahead searches into one line of code. Is this possible? In the following clip, char p must be followed by er (as in percent) AND ar (as in partially or particularly): Clip = ( The other difference is that trans fatty acids (often called trans fat) are fo...
by carno
23 Jan 2022, 16:40
Forum: Ask for Help (v1)
Topic: How to delete all comments in a script?
Replies: 8
Views: 838

Re: How to delete all comments in a script?

Thanks, garry! I still remember your great and original YouTube contributions. :D
by carno
23 Jan 2022, 08:26
Forum: Ask for Help (v1)
Topic: How to delete all comments in a script?
Replies: 8
Views: 838

Re: How to delete all comments in a script?

theres more to parsing comments than just checking /* and ; , particularly if u actually care about not mangling the script in the process u may be able to rip ahk2exe's guts and repurpose them https://github.com/AutoHotkey/Ahk2Exe/blob/master/ScriptParser.ahk#L33-L175 I agree. Both above scripts s...
by carno
23 Jan 2022, 03:06
Forum: Ask for Help (v1)
Topic: How to delete all comments in a script?
Replies: 8
Views: 838

How to delete all comments in a script?

I know how to extract a comment section in an AHK script: RegExMatch(script, "s)/\*(.*?)\*/", match) MsgBox % match However, I would very much appreciate if someone let me how to (write a script to) completely delete all comments (/* ... */) in a given script and come up with a script with no commen...
by carno
04 Dec 2021, 15:38
Forum: Scripts and Functions (v1)
Topic: Get the URL of the current (active) browser tab
Replies: 196
Views: 139050

Re: Get the URL of the current (active) browser tab

Works great. Tested in Windows 7.
by carno
21 Nov 2021, 21:25
Forum: Scripts and Functions (v1)
Topic: [Function] FFToolTip: Flicker-Free ToolTip
Replies: 31
Views: 11715

Re: [Function] FFToolTip: Flicker-Free ToolTip

Great script. Works perfectly on Win 7.
by carno
21 Nov 2021, 18:05
Forum: Scripts and Functions (v1)
Topic: Treeview List Creator v1.1 (Completed)
Replies: 3
Views: 1313

Re: Treeview List Creator v1.1 (Completed)

Tested and works in Win 7.
by carno
21 Nov 2021, 18:01
Forum: Scripts and Functions (v1)
Topic: RunAsTask() - Auto-elevates script without UAC prompt
Replies: 121
Views: 75133

Re: RunAsTask() - Auto-elevates script without UAC prompt

Does this script make any changes to the Windows Registry?
by carno
21 Nov 2021, 17:57
Forum: Scripts and Functions (v1)
Topic: Alert Me
Replies: 3
Views: 2282

Re: Alert Me

Tested and works on Win 7.
by carno
21 Nov 2021, 10:06
Forum: Scripts and Functions (v1)
Topic: if the sound is mute, unmute it
Replies: 3
Views: 3623

Re: if the sound is mute, unmute it

Works great (tested on Win 7).
by carno
21 Nov 2021, 09:56
Forum: Scripts and Functions (v1)
Topic: Product List: Organize products and prices for a small business
Replies: 6
Views: 3413

Re: Product List: Organize products and prices for a small business

This is a great script that can be used for other purposes such as personal inventory management, etc. :D
by carno
22 Jul 2021, 15:15
Forum: Scripts and Functions (v2)
Topic: [AHK v2] Hash string and file functions
Replies: 4
Views: 2573

Re: [AHK v2] Hash string and file functions

Thanks, great work!
by carno
16 May 2021, 17:10
Forum: Scripts and Functions (v1)
Topic: YouTube automatic ad skipper: Get past ads automatically
Replies: 5
Views: 1218

Re: YouTube automatic ad skipper: Get past ads automatically

Please upload the missing Screen_20210429134413.png. Thanks!
by carno
26 Apr 2021, 23:18
Forum: Scripts and Functions (v1)
Topic: Cursor Highlighter
Replies: 76
Views: 56941

Re: Cursor Highlighter

@IbIb
Thanks for the confirmation. Tested and it worked out of the box. Very smooth!
by carno
26 Apr 2021, 22:52
Forum: Scripts and Functions (v1)
Topic: Cursor Highlighter
Replies: 76
Views: 56941

Re: Cursor Highlighter

Thanks for the script. My question is whether this script changes or modifies the Windows Registry in any shape or form?
by carno
17 Apr 2021, 15:32
Forum: Scripts and Functions (v1)
Topic: FileCryptFile() : Encrypt/Decrypt files. CNG-AES-256-CBC
Replies: 40
Views: 8715

Re: FileCryptFile() : Encrypt/Decrypt files. CNG-AES-256-CBC

Thanks! This is another similar program I use all the time: ; http://autohotkey.com/board/topic/90702-encrypt-decrypt-text/ ; https://www.autohotkey.com/boards/viewtopic.php?t=5838 ; =================================================================================== ; AHK Version ...: AHK_L 1.1.11.0...
by carno
18 Mar 2021, 17:43
Forum: Ask for Help (v1)
Topic: Clicking Checkbox
Replies: 1
Views: 956

Re: Clicking Checkbox

Are there any definitive ways to check a checkbox or click on a button when filling an application automatically without using Click function to click on the coordinates of a checkbox or button (that is, using ControlSend, etc. functions only).

Go to advanced search