Mountain View
Jabber SDK API Documentation

Tutorial: Screen Share Video Window Overview

Screen Share Video Window Overview

Title Screen Share Window is in-browser video window in which screen share video for specified TelephonyConversation is rendered. Screen share video window object is created through WindowController.createVideoWindow method (As it is shown in Create In Browser Video Window tutorial). For specified conversation, screen share video can be shown or hidden.

In the snippet below it is shown how to show screen share video for specified TelephonyConversation through ConversationWindow.showForConversation method:

        var screenShareWindow;
        var conversation

        // ...
        // Create screen share video window in designated html element.
        // Obtain telephony conversation for which we want to show screen share video.
        // ...

        screenShareWindow.showForConversation();
    
In the snippet below it is shown how to hide screen share video for specified TelephonyConversation through ConversationWindow.hideForConversation method:

        var screenShareWindow;
        var conversation

        // ...
        // Create screen share video window in designated html element.
        // Obtain telephony conversation for which we want to show screen share video.
        // ...

        screenShareWindow.hideForConversation();
    

Next

Previous