Forums Register Login

wml?

+Pie Number of slices to send: Send
Hi
What is the procedure to display an image generated by a html page in a midlet.... does wml comes into picture here???
+Pie Number of slices to send: Send
No, WML bad!
For a midlet you read in the HTML, and there is an image tag
<img src="http://www.domain.com/image.jpg">
So your midlet needs to read the InputStream from your http connection, parse the tag, get the image source URL, open an InputStream to the image data then load that into an image object using Image.createImage(<inputstream> ;

Then you can display the image object in an imageItem UI component.

regards,
-Shawn
+Pie Number of slices to send: Send
No this is not the case.... i want to display the map generated by the following code in the midle.....take a look at the code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="http://maps.google.com/maps?file=api&v=1&key=ABQIAAAAewKei6r67seJuJyWFSmy4hTwM0brOpm-All5BF6PoaKBxRWWERSiQwLJopnk7bfTK-ygDtPRzc_QdA" type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 500px; height: 400px"></div>
<script type="text/javascript">
//<![CDATA[

var map = new GMap(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.centerAndZoom(new GPoint(-122.1419, 37.4419), 4);

//]]>
</script>
</body>
</html>

yep google map it is..
I AM MIGHTY! Especially when I hold this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 1171 times.
Similar Threads
looking for a blackberry WAP browser emulator for my desktop
WML
using XML to create wml and html
how to convert html to wml
how to execute wml
Building a Better World in your Backyard by Paul Wheaton and Shawn Klassen-Koop
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 29, 2024 05:20:17.