Search found 17 matches

by ByronWillis84
02 Mar 2024, 21:54
Forum: Ask for Help (v1)
Topic: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved
Replies: 11
Views: 257

Re: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved

I just ran your script again and oddly same result. No matter, I really appreciate the help!
by ByronWillis84
02 Mar 2024, 21:40
Forum: Ask for Help (v1)
Topic: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved
Replies: 11
Views: 257

Re: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved

OK I just tweaked it slightly by doing away with the declaration of the "close" group and instead putting it in the WinActive function and now it works. No idea why! #Requires AutoHotkey v1.1.33.11 #If WinExist("ahk_exe zoom.exe") $Esc:: Switch { Case WinActive("ahk_exe SumatraPDF.exe"): WinClose De...
by ByronWillis84
02 Mar 2024, 21:27
Forum: Ask for Help (v1)
Topic: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved
Replies: 11
Views: 257

Re: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved

Many thanks. This looks promising, but for some reason isn't working for me... I just ran AHK Windows Spy, thinking perhaps it wasn't adding SumatraPDF.exe to the group you created, but it appears it should: 000 - Newspaper Index (Anita Piteau).pdf - SumatraPDF ahk_class SUMATRA_PDF_FRAME ahk_exe Su...
by ByronWillis84
02 Mar 2024, 20:56
Forum: Ask for Help (v1)
Topic: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved
Replies: 11
Views: 257

Re: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved

I just tested this to see if it works when actively sharing in Zoom and working in Excel, Word, Outlook, FastStone, and Directory Opus, and it works for all of them! I tried it while in SumatraPDF and it didn't work. Usually when I hit ESC in SumatraPDF, it will close the program, but it no longer d...
by ByronWillis84
02 Mar 2024, 20:15
Forum: Ask for Help (v1)
Topic: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved
Replies: 11
Views: 257

Re: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved

Correct me if I'm wrong, but this would disable ESC entirely while screen sharing is active? I use ESC all the time when I'm screen sharing within other programs. When I strike the key, ESC is sent both to the active program as well as Zoom. For example, if I'm in Excel and I have used the copy comm...
by ByronWillis84
02 Mar 2024, 18:25
Forum: Ask for Help (v1)
Topic: Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved
Replies: 11
Views: 257

Hide Zoom Screen Share controls - Disable "Esc" from registering Topic is solved

I use Zoom Screen Share all the time. By default, Zoom displays a huge bar on my screen of various controls. It's possible to hide it with the keyboard shortcut CTRL+ALT+SHIFT+H, which I do immediately. However, whenever I hit ESC, no matter what program I'm in, it will cause the screen share contro...
by ByronWillis84
24 Jan 2024, 22:48
Forum: Ask for Help (v1)
Topic: Turn off/disable mouse cursor/move off screen
Replies: 3
Views: 192

Re: Turn off/disable mouse cursor/move off screen

I went ahead and tried plugging in a second monitor and moving the mouse to it. That did the trick. The video controls vanished. I wish there were a way to simulate this mouse behavior. We sometimes have this issue on playback of videos while in bed with a laptop and it would be impractical to have ...
by ByronWillis84
24 Jan 2024, 22:20
Forum: Ask for Help (v1)
Topic: Turn off/disable mouse cursor/move off screen
Replies: 3
Views: 192

Turn off/disable mouse cursor/move off screen

Hi there, I am trying to use a screen recording utility (OBS) to capture a video from a news website. When I full-screen the video, the video controls stay visible at the bottom no matter where I move the mouse cursor. I found a utility that will hide the mouse on inactivity (https://www.softwareok....
by ByronWillis84
01 Apr 2022, 00:05
Forum: Ask for Help (v1)
Topic: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs
Replies: 13
Views: 2266

Re: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs

I've been using this (successfully) now for a couple of months, but I have run into a couple of issues. 1.) Copy/pasting between spreadsheets. When I am working with two Excel spreadsheets and I'm copying some information from one to the other, I'm not able to. What is happening is this: when I copy...
by ByronWillis84
17 Feb 2022, 01:15
Forum: Ask for Help (v1)
Topic: ABBYY Screenshot Reader (OCR software) Topic is solved
Replies: 5
Views: 1090

Re: ABBYY Screenshot Reader (OCR software) Topic is solved

Thank you so much guys! I ran the script (and doublechecked my install location) and changed the hotkey to CTRL + SHIFT + SPACE and it works perfect.
by ByronWillis84
16 Feb 2022, 22:43
Forum: Ask for Help (v1)
Topic: ABBYY Screenshot Reader (OCR software) Topic is solved
Replies: 5
Views: 1090

ABBYY Screenshot Reader (OCR software) Topic is solved

I have ABBYY FineReader which comes with a lovely utility called "Screenshot Reader" which I use all of the time in my work. In order for me to activate it, I click on the icon for it in the system tray (I have system tray locked, I am running Windows 10). After I click on it, a small UI dialog pops...
by ByronWillis84
17 Jan 2022, 22:29
Forum: Ask for Help (v1)
Topic: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs
Replies: 13
Views: 2266

Re: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs

OK this is great! I'm using this one now: GroupAdd, stopAlt, ahk_class XLMAIN ahk_exe EXCEL.exe ~!Tab:: KeyWait, Alt Send % WinActive("ahk_group stopAlt") ? "{Esc}" : "" Return I have the same issue with the Alt Menu activating on the ribbon with Microsoft Word. Would it be possible to add Word to t...
by ByronWillis84
12 Jan 2022, 22:59
Forum: Ask for Help (v1)
Topic: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs
Replies: 13
Views: 2266

Re: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs

I'm using this code that you suggested above:

Code: Select all

~!Tab::on := True
#If on
~Alt Up::Send % ("{Esc}", on := False)
#If
I'm using "FastStone Image Viewer" (https://www.faststone.org/FSViewerDetail.htm)
by ByronWillis84
11 Jan 2022, 18:38
Forum: Ask for Help (v1)
Topic: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs
Replies: 13
Views: 2266

Re: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs

So I have just discovered a little issue with this solution. I use a lightweight image viewer called FastStone (which is great, btw!). To close the viewer, I hit ESC. I often use an OCR (optical character recognition) software on images (think like Snagit or a screen snipping utility) and paste the ...
by ByronWillis84
06 Dec 2021, 22:21
Forum: Ask for Help (v1)
Topic: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs
Replies: 13
Views: 2266

Re: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs

mikeyww, Thank you! 1.) Win+Tab. I use this on occasion if I want larger thumbnails, but it's slow. The other disadvantage is that I often use alt+tab without mouse click to quickly switch between two programs once I've established the correct "two most recent" programs. When you release Win+tab it ...
by ByronWillis84
06 Dec 2021, 15:10
Forum: Ask for Help (v1)
Topic: Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs
Replies: 13
Views: 2266

Disable Alt Menu activation after Alt+Tab+Mouseclick switch between programs

Hello, Here's what I'm trying to do: I'm in Program #1 (PDF viewer, SumatraPDF). I hit Alt+Tab. It brings up the thumbnails of all active programs. I click on Microsoft Excel to switch (while continuing to hold Alt key). Excel shows up and then I release the Alt key. This activates the Alt menu shor...

Go to advanced search