Search found 16 matches

by dox
20 May 2024, 15:01
Forum: Ask for Help (v2)
Topic: ChatGPT AutoHotkey Utility
Replies: 5
Views: 521

Re: ChatGPT AutoHotkey Utility

An AHK-based approach, using cURL and phiola (audio recorder): https://github.com/doxgt/PlayGround/blob/main/GPT_cURL.ahk, in case it helps anyone.
by dox
18 May 2024, 11:03
Forum: Ask for Help (v2)
Topic: ChatGPT AutoHotkey Utility
Replies: 5
Views: 521

Re: ChatGPT AutoHotkey Utility

Turns out that running Curl through Run %ComSpec% is the lowest of low-hanging fruits. I use the 100% portable https://github.com/stsaz/phiola (the successor to FMedia) for recording sound through command-line. Everything could be controlled nicely within AHK, the ultimate glue on Windows.
by dox
18 May 2024, 10:57
Forum: Ask for Help (v2)
Topic: Using WinHttp to Send Audio File to Whisper on OpenAI for Transcription
Replies: 1
Views: 154

Re: Using WinHttp to Send Audio File to Whisper on OpenAI for Transcription

Update: going through "WinHttp" is no longer necessary for strictly my purposes at hand. Although from curiosity and backup points of view I'd still like to get it working. But right now it's just for "academic interest". I suspect I'd need to work things out from the v1 example in here: https://www...
by dox
17 May 2024, 13:36
Forum: Ask for Help (v2)
Topic: Using WinHttp to Send Audio File to Whisper on OpenAI for Transcription
Replies: 1
Views: 154

Using WinHttp to Send Audio File to Whisper on OpenAI for Transcription

Reference: https://www.autohotkey.com/boards/viewtopic.php?f=76&t=82198#p358662 Background: https://www.autohotkey.com/boards/viewtopic.php?f=82&t=127698#p571301 https://github.com/kdalanon/ChatGPT-AutoHotkey-Utility/blob/main/ChatGPT%20AutoHotkey%20Utility.ahk https://platform.openai.com/docs/api-r...
by dox
10 May 2024, 18:31
Forum: Ask for Help (v2)
Topic: ChatGPT AutoHotkey Utility
Replies: 5
Views: 521

Re: ChatGPT AutoHotkey Utility

I have been using this fork of Whispering (https://github.com/HamzaETTH/whispering/releases/tag/v3.4.1), a cross-platform app for transcription/dictation using Whisper Engine on OpenAI. It's working as well as could be expected. However, it would be nice to have everything accomplished within the au...
by dox
02 Apr 2024, 00:28
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 554
Views: 123131

Re: UIAutomation with a focus on Chrome

Descolada , thanks so much! I see that the macro recorder can be a bit misleading. I adapted your answer for v2 to using UIAViewer on v1. Basically, in v1 the rough equivalent would be MsgBox % zoom.FindFirstBy("ControlType=Button AND Name='currently unmuted'",,2,False).Name I know the last call on...
by dox
01 Apr 2024, 17:07
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 554
Views: 123131

UIAutomation to query status text of Zoom Mic Button

Greetings. I have tried to use UIA Viewer either in v1 or v2 to get at the status of the Zoom Mute/Unmute toggle button. References to others' attempts are below: https://www.autohotkey.com/boards/viewtopic.php?t=77105 https://github.com/oldjohngalt/ZoomStatus/blob/master/getZoomStatus.py However, b...
by dox
10 Mar 2023, 19:17
Forum: Scripts and Functions (v1)
Topic: SetClipboardHTML() for V1.1 & V2
Replies: 29
Views: 8076

Re: SetClipboardHTML()

Quick follow-up: I was mistaken in thinking that something needs to be done inside SKAN's function. It turns out that it is quite easy, after reading in the file, to wrap necessary HTML tags around the elements I want to format with RegExReplace. Then StrReplace the "`r`n" with "<br />". Good to go....
by dox
10 Mar 2023, 17:08
Forum: Scripts and Functions (v1)
Topic: SetClipboardHTML() for V1.1 & V2
Replies: 29
Views: 8076

Re: SetClipboardHTML()

Now of course, I could update HTMLBody to something like: SetClipboardHTML("<span style='font-family:Verdana; color:#000000; font-size:10pt; font-weight:bold; font-style:italic'>Title in bold italic 10pt Verdana:</span> <span style='font-family:Georgia; color:#000000; font-size:12pt'>Text in regular...
by dox
10 Mar 2023, 14:39
Forum: Scripts and Functions (v1)
Topic: SetClipboardHTML() for V1.1 & V2
Replies: 29
Views: 8076

Re: SetClipboardHTML()

A question please, if knowledgeable users wouldn't mind: If I have: String := "||Title||: This is some text ..." How would I go about using SetClipboardHTML() or alternative to just set the ||Title|| substring to HTML bold ? Using Skan's function, I could paste the entire clipboard string to HTML-aw...
by dox
24 Sep 2022, 21:00
Forum: Ask for Help (v1)
Topic: Very Elementary Mouse Button Remapping - What Am I Missing? Topic is solved
Replies: 5
Views: 550

Re: Very Elementary Mouse Button Remapping - What Am I Missing? Topic is solved

Found a workaround under constraint of UAC while satisfying the requirement of portability:

Code: Select all

F1::
	Gosub ~Rbutton
Return


~Rbutton::
	MsgBox, Right button clicked
Return
Straight out of Hotkey Tips and Remarks

Thanks everyone.
by dox
24 Sep 2022, 19:49
Forum: Ask for Help (v1)
Topic: Very Elementary Mouse Button Remapping - What Am I Missing? Topic is solved
Replies: 5
Views: 550

Re: Very Elementary Mouse Button Remapping - What Am I Missing? Topic is solved

Thanks very much to you both for double-checking! Turns out you are 100% right, Gregster. It is a Win 10 UAC thing that completely eluded me until you brought it to my attention. Running the hotkey remapping as Admin was without a hitch. My conundrum is that I intend to invoke these hotkeys both at ...
by dox
24 Sep 2022, 16:53
Forum: Ask for Help (v1)
Topic: Very Elementary Mouse Button Remapping - What Am I Missing? Topic is solved
Replies: 5
Views: 550

Re: Very Elementary Mouse Button Remapping - What Am I Missing? Topic is solved

The tutorial code below, straight from https://www.autohotkey.com/docs/commands/_InputLevel.htm#ExBasic : #InputLevel 1 Numpad0::LButton #InputLevel 0 ; This hotkey can be triggered by both Numpad0 and LButton: ~LButton::MsgBox Clicked is not working for me, either. I gotta be missing something simp...
by dox
24 Sep 2022, 15:30
Forum: Ask for Help (v1)
Topic: Very Elementary Mouse Button Remapping - What Am I Missing? Topic is solved
Replies: 5
Views: 550

Very Elementary Mouse Button Remapping - What Am I Missing? Topic is solved

Below works as expected, with pressing F1 popping intended message. F1::F2 F2:: MsgBox, F2 pressed Return But replacing it with RButton or MButton doesn't work. F1::Rbutton Rbutton:: MsgBox, Right mouse button pressed Return Enabling "MouseHook" makes no difference. Must be something elementary I am...
by dox
31 Aug 2022, 01:14
Forum: Tutorials (v1)
Topic: FindText tutorial
Replies: 98
Views: 69933

Scaling clarification

Many thanks to OP (Descolada) for the excellent tutorials and to Feiyue for making this possible! Just a clarification so that others don't get stumped like I did initially. OP had written that for the purposes of these tutorials, Windows DPI scaling should be set at "100%". However, at 100% the Not...
by dox
25 Jul 2019, 20:15
Forum: Scripts and Functions (v1)
Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
Replies: 235
Views: 140370

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

I haven't posted enough on this forum to be able to send private messages to the principal author of TypingAid, whom I presume to be Maniac ? Well thanks for making this freely available in the first place. I have been using TypingAid for the last 3 years with increasing dependency and "fluency". It...

Go to advanced search