Hi..
Can anyone tell me how to invoke HTML pages from MIDlet?
I am using JWT-2.5.2 kit's emulator for testing MIDlet.
I am planning to port the MIDlet to NokiaE90 Communicator.
Please help me....
M.Kumar
Hi..
Can anyone tell me how to invoke HTML pages from MIDlet?
I am using JWT-2.5.2 kit's emulator for testing MIDlet.
I am planning to port the MIDlet to NokiaE90 Communicator.
Please help me....
M.Kumar
If you want to launch a web page within device default browser you can use MIDlet platformRequest() method, like this:
PitCode:yourMidletInstance.platformRequest("http://forum.nokia.com");
Duplicate post. Please use only one thread per topic/question. The other one is here:
http://discussion.forum.nokia.com/fo...d.php?t=132420
And if you want to parse and display web pages within your MIDlet, you have to write your own HTML/CSS parser and renderer (your own "embedded browser", in effect).