Netmeeting的问题,很急!开发中的难题(200分)

  • 主题发起人 主题发起人 mcs99
  • 开始时间 开始时间
M

mcs99

Unregistered / Unconfirmed
GUEST, unregistred user!
慕名而来,很是兴旺。请教一个很急的问题

正在开发一个与Netmeeting有关的软件
有下面几个问题:
1 Netmeeting有没有开放接口,有什么接口?
2 Netmeeting可以当做activex控件,要如何在ASP,delphi中引用?
3 有没有一些有关Netmeeting的材料(请不要说在Microsoft的有,
大家都知),最好是有例子
 
1,在微软站点下在netmeeting 3.0 sdk,里面有很权的文档和例子。
2,最简单的方法是在frontpage中插入activex控件,你调用它的方法就可以了,最常见的
当然是callto.
3,微软自己出的东西当然得看它的文档咯。

the following is from msdn:

Including a CallTo URL in Your Web Page
Add this script code to your HTML page to embed the NetMeeting CallTo URL in the <BODY> of your script in order to provide simple CallTo, HangUp, and UnDock functionality:

<object ID=NetMeeting CLASSID="CLSID:3E9BAF2D-7A79-11d2-9334-0000F875AE17">
<PARAM NAME = "MODE" VALUE = "DataOnly"> </object>
<BR><BR>
<input type=button value ="callto:"id=CallToBtn onclick=NetMeeting.CallTo(CallToAddress.value)>
<input type=text id=CallToAddress>
<input type=button value ="Hangup"id=HangUpBtn onclick=NetMeeting.LeaveConference()>
<input type=button value ="UnDock"id=UnDockBtn onclick=NetMeeting.UnDock()>
The <OBJECT> tag loads the NetMeeting control. The <PARAM NAME> tag sets the viewing mode. This specific line sets the view mode to DataOnly. The <input type..> instructions define the actions for the Web page when the user either clicks one of the buttons or types an address in the CallTo text box.

 
人家都说完了。
 
又来晚了。
 
接受答案了.
 
后退
顶部