hai experts,
I have WRT application to lanch the url in web browser. but what i need is "To hide the status bar in the top of the screen" . it just like a full screen application.i dont want to show the page loading, no of KB loading , url path loading at all .
I used lot of techniques inside my application.But no use
here is my code .
index.html
============
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
<!--
function doRedirect()
{
widget.openURL("http://www.sony.com");
window.statusbar.visible = false
window.menu.hideSoftkeys();
setFullScreenMode(true);
window.close();
}
//-->
</script>
<title>Infoview Widget</title>
</head>
<body onload="doRedirect()">
</body>
</html>
info.plist
===========
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Nokia//DTD PLIST 1.0//EN" "http://www.nokia.com/NOKIA_COM_1/DTDs/plist-1.0.dtd">
<plist version="1.0">
<dict>
<key>DisplayName</key>
<string>My Application</string> <!-- Name to be shown next to the icon -->
<key>Identifier</key>
<string>com.forum.nokia.widget.My Application</string>
<key>Version</key>
<string>0.1</string>
<key>MainHTML</key>
<string>index.html</string> <!-- File name of the main HTML document -->
<key>AllowNetworkAccess</key>
<true /> <!-- Allow access to the network-based resources from the widget -->
<key>MiniViewEnabled</key>
<true /> <!-- Enable home screen view -->
</dict>
</plist>
I dont know why its not working on my phone (N97 mini).
pls Some body help me soon
Advance thanks,
Regards Deepak....(Waiting for reply)


I dont know why its not working on my phone (N97 mini).
Reply With Quote

