Version 8.3.3
 —  Layout Elements  —

NETMEETING

The NETMEETING control allows you to start NetMeeting sessions within your Application Designer pages.

The following topics are covered below:


Example

Netmeeting

The XML layout definition is:

<pagebody>
  <itr>
    <netmeeting calltoprop="callto" modeprop="modep" width="300">
    </netmeeting>
  </itr>
</pagebody>

The Java code of the adapter is:

public class NetMeetingTestAdapter  extends Adapter
{
    // property >callto<
    String m_callto;  // netmeeting directory server /emailAdr
    public String getCallto() { return m_callto; }
    public void setCallto(String value) { m_callto = value; }

    // property >modep<
    String m_modep;
    // FULL, PREVIEWONLY, PREVIEWNOPAUSE,
    // REMOTEONLY, REMOTENOPAUSE, DATAONLY
    public String getModep() { return m_modep; }
    public void setModep(String value) { m_modep = value; }

    /** initialisation - called when creating this instance*/
    public void init()
    {
      m_callto = "netmeeting.ils.server/contact@netmeeting.com";
      m_modep="PREVIEWONLY";
    }

}

Top of page

Properties

Basic
calltoprop

Has to contain the contact data of 'contact' that should be called.

The data has to have the following semantics.

ILS Server/email adress e.g. ils.netmeeting.de/contact@testmail.com

Optional  
modeprop

Holds the mode of the control.

Possible are:

FULL, PREVIEWONLY, PREVIEWNOPAUSE, REMOTEONLY, REMOTENOPAUSE, DATAONLY

Optional  
width

Width of the control.

There are three possibilities to define the width:

(A) You do not define a width at all. In this case the width of the control will either be a default width or - in case of container controls - it will follow the width that is occupied by its content.

(B) Pixel sizing: just input a number value (e.g. "100").

(C) Percentage sizing: input a percantage value (e.g. "50%"). Pay attention: percentage sizing will only bring up correct results if the parent element of the control properly defines a width this control can reference. If you specify this control to have a width of 50% then the parent element (e.g. an ITR-row) may itself define a width of "100%". If the parent element does not specify a width then the rendering result may not represent what you expect.

Optional

100

120

140

160

180

200

50%

100%

Top of page