Search found 11 matches

by dox
02 Apr 2024, 00:28
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 117750

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: 551
Views: 117750

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: 7630

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: 7630

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: 7630

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: 505

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: 505

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: 505

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: 505

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: 96
Views: 65426

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: 138384

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