Wednesday, August 11, 2010

Import your contacts from excel to your nokia phone using ovi

Well, it's easy.

Use javascript.

Inject the script, using firebug or something with a javascript console.

The batch is something like this:
document.getElementById('firstName').value = 'me'; document.getElementById('mobile').value = '22222222'; javascript:com.ovi.contacts.quickAddContact();

You can add email and last name.


Step by step:
1.Logon on ovi.com.
2.Go to contacts tab.
3.Use the excel with your contacts
4.Use the following formulas to generate the right commands:
=CONCATENATE("document.getElementById('firstName').value = '";B2;"';")
=CONCATENATE("document.getElementById('mobile').value = '";C2;"';")
javascript:com.ovi.contacts.quickAddContact();

5.Then copy the generated cells, copy it and run it using firebug.
I will put the sample excel.

Cheers,
Moleiro