Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI CompanionUser groups are unique spaces where community members can collaborate, network, and exchange knowledge on similar interests and expertise.
Help & Resources is your place to discover helpful Zoom support resources, browse Zoom Community how-to documentation, and stay updated on community announcements.
The Events page is your destination for upcoming webinars, platform training sessions, targeted user events, and more. Stay updated on opportunities to enhance your skills and connect with fellow Zoom users.
Starting February 3, 2025, Zoom Phone customers must add their phone numbers to an approved 10DLC campaign in order to use SMS/MMS capabilities on their numbers.
Introducing more live support options! More Zoom customers now have access to live agent chat support. Sign in and visit our Contact Support page to see all your available support options. We’re here to help!
2024-12-29 07:18 PM
I'm experiencing an issue with screen sharing on Mac Safari Version 18.0.1 (20619.1.26.31.7). After clicking "Cancel" on the initial screen share permission dialog, all subsequent screen sharing attempts fail with the following error:
javascriptCopy{type: 'INVALID_OPERATION', reason: 'user deny screen share'}
Here are the relevant details:
Device type: Mac
Browser: Safari 18.0.1 (20619.1.26.31.7)
Error code: INVALID_OPERATION
Troubleshooting steps taken:
Attempted multiple screen share initiations
Verified the issue occurs consistently after initial denial
Below is the code snippet for the screen sharing implementation:
javascriptCopytoggleShare(isShare) {
if (isShare) {
if (mediaStream.isStartShareScreenWithVideoElement()) {
mediaStream.startShareScreen(document.querySelector('#chat-share-video')).then(() => {
$("#chat-shareVideoContainer").show();
$("#chat-shareCanvasContainer").removeClass("flex-align-items-center");
$("#chat-shareCanvasContainer").hide();
}).catch((error) => {
adapter.server.SendSysMessage(adapter.currentIceLink.conversationId, "resetShareScreen", (res) => {});
console.log('error =>', error)
})
} else {
mediaStream.startShareScreen(document.querySelector('#chat-share-canvas')).then(() => {
$("#chat-shareVideoContainer").hide();
$("#chat-shareCanvasContainer").addClass("flex-align-items-center");
$("#chat-shareCanvasContainer").show();
}).catch((error) => {
adapter.server.SendSysMessage(adapter.currentIceLink.conversationId, "resetShareScreen", (res) => {});
console.log('error =>', error)
})
}
} else {
mediaStream.stopShareScreen().then(() => {
adapter.server.SendSysMessage(adapter.currentIceLink.conversationId, "resetShareScreen", (res) => {});
$("#chat-shareVideoContainer").hide();
$("#chat-shareCanvasContainer").removeClass("flex-align-items-center");
$("#chat-shareCanvasContainer").hide();
}).catch((error) => {
console.log('error =>', error)
})
}
}