Code:
m_callMenuItem = new MenuItem("call" , 0,0)
{
public void run()
{
Invoke.invokeApplication(Invoke.APP_TYPE_PHONE, new PhoneArguments (PhoneArguments.ARG_CALL, "555-5555"));
}
}; I mean, after I run this code, the screen doesn't change at all, seems like nothing happened. I am expecting it will be like a normal phone call, and call screen will pop out....
How could I make that? or it is not possible to make a call from our own application just like making a call as a default way..