I'm helping disabled person to adapt Zoom application for their special needs.
The problem is that zoom exposes only
Additionally, zoom shows menu with
I started my script as
raise hand
reaction via Option + y
keyboard shortcut.
My goal is to let this person express other reactions like yes
, no
and ...
using keyboard shortcuts connected to special equipment.
I find it challenging to access the reactions
menu via Applescript.

reactions
button only when user hover mouse.

tell application "zoom.us"
activate
end tell
try
tell application "System Events"
tell process "zoom.us"
tell window "Zoom Meeting"
-- some magic that reveals menu with buttons and press reactions button goes here
end tell
end tell
end tell
on error errMsg
display dialog "Error: " & errMsg
end try
Thanks for your help!
Asked by A B
(500 rep)
Feb 9, 2023, 07:10 AM