06-23-2009 03:14 PM
I use the following code to launch the email editor.It works as expected when I use JDE 4.1 with the 7290 simulator. However, when I run the 8830 simulator from within the 4.7 JDE instead of launching in a "Compose Email" mode it launches in the "Compose SMS" mode. (NOTE: I am restricted to using the 4.1 API or below.) How do I achieve consistent behaviour?
MessageArguments msgArgs = new MessageArguments (MessageArguments.ARG_NEW, "a@a.com", "Hello there", ""); Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, msgArgs);
06-24-2009 01:22 AM