| Revision: | 591 |
| Committed: | Tue Nov 3 22:45:12 2015 UTC (10 years, 4 months ago) by nino.borges |
| Content type: | text/x-python |
| File size: | 353 byte(s) |
| Log Message: | Moved dir out of main dir. |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | ninoborges | 8 | ## 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 |