03-09-2011 03:05 PM
How to do conferencecall programatically in blackberry .....
3 call should established with atuoredial..........
03-09-2011 08:56 PM - last edited on 03-10-2011 12:30 AM
You should make use of the phone listener to check the call status (incoming, outgoing, connected ...) of your phone.
In target call status make use of the event injector to control the phone menu to hold the first call.
Then dial to the third party with the command.
PhoneArguments call = new PhoneArguments(PhoneArguments.ARG_CALL, "123456"); Invoke.invokeApplication(Invoke.APP_TYPE_PHONE, call);
Check the call status of the third party with the help of the phone listener.
Then use event injector again to control the phone menu to join these two call together.
You can establish a conference call manually with you phone menu for more detail steps on how to establish a conference call with the help of the phone menu.
Please be remind that CDMA network may not be able to establish conference call (Information from other thread of this forum).
One thing I am not sure is whether autoredial is possible.
03-09-2011 11:47 PM
actually i know how to call manually the conference call...but want to do programatically...
say i have two number 12324,45454 i want to join this two number through conference call...
through programatically....
03-10-2011 12:39 AM
There is some demo program within Eclipse. You can refere to it for detail. I can sure the folw I provide is work. Sinice I already establish a program that establish a conference call in case of any incoming or outing call.
Phone listener is quite easy to implement. (With demo program in Eclipse)
The code provide about can establish a phone call.
The only thing you need to do is to implement the flow with the help of event injector.
Not a difficult program. Can complete in just a few hundred codes.