Embedding a NetMeeting UI ActiveX Control
Add this <OBJECT> tag to your HTML page to embed the NetMeeting UI ActiveX control in the <BODY> of your script using the default viewing mode:
<object ID="NetMeeting"
CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17"></object>
Note This control requires NetMeeting 3, as earlier versions of NetMeeting do not support this feature. If you don't see the NetMeeting UI ActiveX control below, install NetMeeting 3 from https://www.microsoft.com/NetMeeting.
See Also
Viewing Modes
Set the NetMeeting UI ActiveX control's initial property values using <PARAM> tags. (For Visual Basic programmers, this is analogous to setting the initial properties for a control on a form.)
The following table describes the available viewing modes controlled by PARAM NAME = MODE. In all video mode cases, if the camera is off, the video window shows the default NetMeeting image.
View Mode | Description |
---|---|
Full | The video window, frame, and buttons. This is the default viewing mode. |
DataOnly | The UI components not needed for audio/video. This includes chat, whiteboard, file transfer, and application sharing. |
PreviewOnly | In video mode, view the local video window with a pause button. |
RemoteOnly | In video mode, view the remote video window with a pause button. |
PreviewNoPause | In video mode, view the local video window only. |
RemoteNoPause | In video mode, view the remote video window only. |
Telephone | The telephone pad window. |
Full
Include the following script in your HTML page to set the NetMeeting UI ActiveX control view mode to Full. An example of the control in that mode appears below the script.
<object ID=NetMeeting
CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17">
<PARAM NAME = "MODE" VALUE = "Full">
</object>
DataOnly
Include the following script in your HTML page to set the NetMeeting UI ActiveX control view mode to DataOnly. An example of the control in that mode appears below the script. If the UI control does not appear, see the note at the beginning of this section about NetMeeting 3 requirements.
<object ID=NetMeeting
CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17">
<PARAM NAME = "MODE" VALUE = "DataOnly">
</object>
PreviewOnly
Include the following script in your HTML page to set the NetMeeting UI ActiveX control view mode to PreviewOnly. An example of the control in that mode appears below the script. If the UI control does not appear, see the note at the beginning of this section about NetMeeting 3 requirements.
<object ID=NetMeeting
CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17">
<PARAM NAME = "MODE" VALUE = "PreviewOnly">
</object>
RemoteOnly
Include the following script in your HTML page to set the NetMeeting UI ActiveX control view mode to RemoteOnly. An example of the control in that mode appears below the script. If the UI control does not appear, see the note at the beginning of this section about NetMeeting 3 requirements.
<object ID=NetMeeting
CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17">
<PARAM NAME = "MODE" VALUE = "RemoteOnly">
</object>
PreviewNoPause
Include the following script in your HTML page to set the NetMeeting UI ActiveX control view mode to PreviewNoPause. An example of the control in that mode appears below the script. If the UI control does not appear, see the note at the beginning of this section about NetMeeting 3 requirements.
<object ID=NetMeeting
CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17">
<PARAM NAME = "MODE" VALUE = "PreviewNoPause">
</object>
RemoteNoPause
Include the following script in your HTML page to set the NetMeeting UI ActiveX control view mode to RemoteNoPause. An example of the control in that mode appears below the script. If the UI control does not appear, see the note at the beginning of this section about NetMeeting 3 requirements.
<object ID=NetMeeting
CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17">
<PARAM NAME = "MODE" VALUE = "RemoteNoPause">
</object>
Telephone
Include the following script in your HTML page to set the NetMeeting UI ActiveX control view mode to Telephone. An example of the control in that mode appears below the script. If the UI control does not appear, see the note at the beginning of this section about NetMeeting 3 requirements.
<object ID=NetMeeting
CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17">
<PARAM NAME = "MODE" VALUE = "Telephone">
</object>