Categories: S60 | Python | How To | Code Examples | Telephony
This page was last modified 22:47, 12 October 2007.
How to make a phone call
From Forum Nokia Wiki
telephone module provides many functions for calling.
import telephone telephone.dial('017337330') # so easy # You can hang up by... guess it... telephone.hang_up() #You can combine this with the contacts module to search and dial import contacts, telephone name = 'Cyke64' cont = contacts.open().find(name)[0] number = cont.find('mobile_number')[0].value telephone.dial(number)
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to make a data call 6600 | zagozi | Symbian Networking & Messaging | 0 | 2006-06-28 08:51 |
| Retrieving phone number | arunbangari | General Symbian C++ | 0 | 2003-07-29 07:33 |
| How To Make Data Call 6600 | zagozi | General Symbian C++ | 0 | 2006-06-28 08:50 |
| call stop | jayesh1912 | Mobile Java Networking & Messaging & Security | 1 | 2008-04-23 15:28 |
| Can a J2ME app open a phone line? | mdaley | Mobile Java General | 3 | 2002-06-14 11:54 |
