September 5, 2022

Teams Meeting Actions like fullscreen with AutoHotkey

I have tried to answer a user request to be able to set a Teams Meeting in Fullscreen with Autohotkey.
This is how close I could come using UIA. Unfortunately the click on the Fullscreen button is not working.

Request

See comment.

During a Teams Meeting, we want to be able to access the meeting actions like 'Full screen' accessible behind the more actions button in a Teams meeting with AutoHotkey.


Code

See below the code I have tried:
Teams_MeetingAction(id){
; id: recording, fullscreen, device-settings, incoming-video
WinId := Teams_GetMeetingWindow()
If !WinId ; empty
return
UIA := UIA_Interface()
TeamsEl := UIA.ElementFromHandle(WinId)
sFindBtn := "AutomationId=" . id . "-button"
ActionEl := TeamsEl.FindFirstBy(sFindBtn)
If ActionEl
Goto ClickAction
MoreEl := TeamsEl.FindFirstBy("AutomationId=callingButtons-showMoreBtn")
If !MoreEl {
TrayTip TeamsShortcuts: ERROR, More Actions button not found!,,0x2
;MsgBox % ReactionsEl.DumpAll() ; DBG
return
}
MoreEl.Click() ; Click element without moving the mouse
;ActionEl:=TeamsEl.WaitElementExist(sFindBtn,,,,1000) ; timeout=2s
Sleep, 1000
ActionEl := TeamsEl.FindFirstBy(sFindBtn)
If !ActionEl {
TrayTip TeamsShortcuts: ERROR, Meeting Action button for '%id%'' not found!,,0x2
;MsgBox % ReactionsEl.DumpAll() ; DBG
return
}
ClickAction:
;MsgBox % ActionEl.DumpAll() ; DBG
ActionEl.Click()
; Tooltip("Teams Meeting Action: " . id,1000) : will hide action menu
TrayTip TeamsShortcuts: Meeting Action, Button for '%id%'' clicked!,,0x1
}
The code runs well to find and click on the More Actions button and also to find the Fullscreen button.
Unfortunately, the click on the Fullscreen button does not have any effect (except closing the more actions button panel) 

I have posted a Request to Desocolada (the creator of the UIAutomation library) if he has an idea why.


See also

Follow-up post: Teams Meeting: Toggle Fullscreen with AutoHotkey