Hi All,
I am new to Python s60 (5th edition) application development. I am trying to develop an application that will interact with IVR system and I am stuck with the telephone module.
Here is what I am trying to do. Dial a number (responding with IVR), wait for 5 seconds, press "1". I want all these through the code.
import telephone
import time
telephone.dial(u'12345')
time.sleep(5)
telephone.dial(u'1')
I couldnt find an API in python s60 for pressin/entering "1" after connecting a number. telephone.dial(u'1') is raising exception as there is another call in progress.
Any help is greatly appreciated!
Thanks!

Reply With Quote


