ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/ns_dev/Python/NinoCode/learning/netmeeting_com.py
Revision: 8
Committed: Sat May 5 04:21:19 2012 UTC (13 years, 10 months ago) by ninoborges
Content type: text/x-python
File size: 353 byte(s)
Log Message:
Initial Import

File Contents

# Content
1 ## This program will automate netmeeting through com. This program is ment to be a
2 ## reference and not run or to be imported.
3 #Eaborges
4 #12.31.01
5
6 from win32com.client import Dispatch
7
8 n=Dispatch("NetMeeting.App.1")
9
10 def call(pc_name):
11 n.CallTo(pc_name)
12
13 def endcall():
14 n.LeaveConference()
15
16 def shownm():
17 n.UnDock()
18
19