Search found 360 matches

by SirSocks
25 May 2023, 21:32
Forum: Scripts and Functions (v2)
Topic: [v2] FindText - Capture screen image into text and then find it
Replies: 30
Views: 12294

Re: [v2] FindText - Capture screen image into text and then find it

This is awesome. Thanks for create a V2 of this @feiyue! :thumbup:
by SirSocks
18 May 2023, 09:02
Forum: Tutorials (v1)
Topic: Neural Network basics - Artificial Intelligence using AutoHotkey!
Replies: 74
Views: 73738

Re: Neural Network basics - Artificial Intelligence using AutoHotkey!

Very well explained. Thank you for all the work you put into this tutorial. :bravo:
by SirSocks
20 Apr 2023, 08:29
Forum: Tutorials (v1)
Topic: AHK Meets Chat GPT
Replies: 4
Views: 4731

Re: AHK Meets Chat GPT

This is super handy, Thank you!
by SirSocks
20 Apr 2023, 08:05
Forum: Scripts and Functions (v1)
Topic: v1 -> v2 Script Converter
Replies: 146
Views: 72399

Re: v1 -> v2 Script Converter

This is very helpful. Thank you.
by SirSocks
16 Nov 2022, 14:32
Forum: Ask for Help (v1)
Topic: Script Dependent on Current Time Topic is solved
Replies: 4
Views: 499

Re: Script Dependent on Current Time Topic is solved

This should work...

Code: Select all

SysGet, bswapped, 23
if (bswapped=0) and (A_Hour<20)
MsgBox The mouse buttons are not swapped, and it is before 8 p.m.
Edit: Changed to "<"
by SirSocks
13 Oct 2022, 08:37
Forum: Scripts and Functions (v1)
Topic: [Library] HSL & HSV v0.1 (Preview) - Convert RGB To/From HSL or HSV
Replies: 2
Views: 2955

Re: [Library] HSL & HSV v0.1 (Preview) - Convert RGB To/From HSL or HSV

The examples in the download files are very helpful. Thank you. :thumbup:
by SirSocks
29 Aug 2022, 13:33
Forum: Ask for Help (v1)
Topic: Using BlinkStick with AHK
Replies: 3
Views: 706

Re: Using BlinkStick with AHK

malcev wrote:
29 Aug 2022, 13:14
You can use component object model to automate it.
Good point, COM will most likely be a simply method of interacting with the BlinkStick.
by SirSocks
26 Aug 2022, 08:16
Forum: Ask for Help (v1)
Topic: Using BlinkStick with AHK
Replies: 3
Views: 706

Using BlinkStick with AHK

Has anyone tried to use AHK to control a BlinkStick? It seems like it somehow should be possible, as it's compatible with AutoIt.

https://www.blinkstick.com/
https://www.blinkstick.com/help/api-implementations
by SirSocks
14 Aug 2022, 15:36
Forum: Ask for Help (v1)
Topic: Know the coordinates and size of a browser's client window
Replies: 3
Views: 554

Re: Know the coordinates and size of a browser's client window

AccViewer.ahk does display the active window region within a browser. You'd have to look into a method for extracting the coordinates.
by SirSocks
24 Jul 2022, 11:42
Forum: Scripts and Functions (v1)
Topic: [Library] Chart using Gdiplus
Replies: 22
Views: 5122

Re: [Library] Chart using Gdiplus

Super awesome, and useful. Thank you. :)
by SirSocks
24 May 2022, 23:02
Forum: Scripts and Functions (v1)
Topic: Filexpro() : File Extended Properties Object
Replies: 33
Views: 15068

Re: Filexpro() : File Extended Properties Object

This is great! Is it possible to extract the geolocation (Latitude & Longitude) from a photo using Filexpro() ? Better late than sorry: https://www.autohotkey.com/boards/viewtopic.php?p=356581#p356581 :mrgreen: (thread contains additional functions besides the lat/long subject!) ;) Amazing! Thank y...
by SirSocks
09 May 2022, 12:42
Forum: Ask for Help (v1)
Topic: What is the name of the dpi switcher button?
Replies: 3
Views: 524

Re: What is the name of the dpi switcher button?

Which button? Which application? It would be helpful if you included a screenshot.
by SirSocks
26 Apr 2022, 21:47
Forum: Ask for Help (v1)
Topic: Help replacing text.
Replies: 1
Views: 298

Re: Help replacing text.

It sounds like the StrReplace() function may be helpful to you....
https://www.autohotkey.com/docs/commands/StrReplace.htm
by SirSocks
26 Apr 2022, 21:42
Forum: Ask for Help (v1)
Topic: unsure on how to send keystrokes to a window
Replies: 3
Views: 440

Re: unsure on how to send keystrokes to a window

It looks like you may have forgotten to share your script. However you can use Content Sensitive hotkeys, such as #If.
Here's some more info on it.....
https://www.autohotkey.com/docs/commands/_If.htm
by SirSocks
26 Apr 2022, 21:26
Forum: Ask for Help (v1)
Topic: Using = in hotkey combination Topic is solved
Replies: 10
Views: 829

Re: Using = in hotkey combination Topic is solved

Try using Scan Codes or Virtual Keys. Here's some info on that... https://jacks-autohotkey-blog.com/2016/04/14/understanding-autohotkey-keyboard-scan-codes-and-virtual-key-codes-beginning-hotkeys-part-12/ Try this..... numpadenter:: Send, ^{raw}= Return Or this... numpadenter:: Send, ^{sc55} Return ...
by SirSocks
12 Apr 2022, 20:05
Forum: Scripts and Functions (v1)
Topic: [ Tool ] Quick Icons ( Base64 )
Replies: 12
Views: 2375

Re: [ Tool ] Quick Icons ( Base64 )

Wow, this is incredible and extremely useful. :thumbup:
by SirSocks
10 Mar 2022, 14:46
Forum: Scripts and Functions (v1)
Topic: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids (now for v2!)
Replies: 140
Views: 59510

Re: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids

@joedf Thank you for pointing the OneClick method. That's very helpful! :thumbup:
by SirSocks
10 Mar 2022, 12:47
Forum: Scripts and Functions (v1)
Topic: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids (now for v2!)
Replies: 140
Views: 59510

Re: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids

Is it possible to open a local file with Neutron? For security reasons, Web Browsers won't open local files. But there must be a way to allow Neutron to run/open a local file. For example: The following code will not open the document on a standard web browser. <a href="file:///C:\Users\Admin\Temp\M...

Go to advanced search