Jump to content

Javascript for i600?


Recommended Posts

Guest Kevin Shek
Posted

Hi all, ive recently got a I600 on Orange (UK) and am overall pleased with it. It runs on Windows Mobile 5 (which im not clued up on)

After connecting it up to my Wifi and surfing around a bit, i notice on some forums, i can reply as the reply box will not highlight when moving the navi key. This i believe is beacause java isnt enabled or installed.

Is there a javascript plugin for vB boards?

Are there any other plugins i can get? (example flash, directx) or does it not work like that?

Guest Kevin Shek
Posted

ive just found this quote below here http://msdn2.microsoft.com/en-us/library/bb278115.aspx

"AJAX

Windows Mobile 6 has an updated version of Microsoft Internet Explorer® Mobile that includes the XML DOM and javascript support required to run basic AJAX applications. This allows you to leverage your existing ASP.NET, XML, and javascript skills to build rich browser-based applications that run on Windows Mobile 6 devices."

So does this mean i would need WM6?? if so, can the I600 be updated to run WM6?

Posted
ive just found this quote below here http://msdn2.microsoft.com/en-us/library/bb278115.aspx

"AJAX

Windows Mobile 6 has an updated version of Microsoft Internet Explorer® Mobile that includes the XML DOM and javascript support required to run basic AJAX applications. This allows you to leverage your existing ASP.NET, XML, and javascript skills to build rich browser-based applications that run on Windows Mobile 6 devices."

So does this mean i would need WM6?? if so, can the I600 be updated to run WM6?

Wonder anyone notice or have discussion on this issue....

The PIE that comes with the i600 GC003>+ (no idea on 003- as my i600 comes with 003) is actually very similar or same to the ones that comes with the WM6 on Dopod C730 WM6 releases, I can confirm basic AJAX works (XMLSocket works, but very limited DHTML, especially limited CSS style of DIV layout)

I have a personal media stream server to work with the i600, was base on HTML only due to limited support of AJAX on prev. PIE WM5, and now the AJAX version works good on the i600!

just my 2 cents.

:rolleyes:

Posted
Wonder anyone notice or have discussion on this issue....

The PIE that comes with the i600 GC003>+ (no idea on 003- as my i600 comes with 003) is actually very similar or same to the ones that comes with the WM6 on Dopod C730 WM6 releases, I can confirm basic AJAX works (XMLSocket works, but very limited DHTML, especially limited CSS style of DIV layout)

I have a personal media stream server to work with the i600, was base on HTML only due to limited support of AJAX on prev. PIE WM5, and now the AJAX version works good on the i600!

just my 2 cents.

:P

function sendxml(xmlurl, func)

{

var http_request = false;

try {netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");} catch(e) { }

if (window.XMLHttpRequest) {http_request = new XMLHttpRequest(); if (http_request.overrideMimeType) {http_request.overrideMimeType('text/xml');}}

else if(window.ActiveXObject) {try {http_request = new ActiveXObject("Msxml2.XMLHTTP");} catch(e){try {http_request = new ActiveXObject("Microsoft.XMLHTTP");} catch(e) { }}}

if (!http_request) {alert('Giving up, Cannot create an XMLHTTP instance'); return false;}

http_request.onreadystatechange = function() { func(http_request); };

var parameters = PARA_GOES_HERE;

http_request.open('POST', xmlurl, true);

http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");

http_request.setRequestHeader("Content-length", parameters.length);

http_request.setRequestHeader("Connection", "close");

http_request.send(parameters);

}

Confirm this works.... :rolleyes:

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.