Jump to content

Recommended Posts

Posted

Can you please explain what it does?

[left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left]

Posted

You can Export your contact list into an XML styled file, called "WhatEver.ctt", this list can be later imported to another account, or computer.

Jeantje's example includes a UDF for parsing those CTT files into variables using Regular Expressions more recognizable by AutoIt in a friendlier output. :D

#include "MSN_CTT.au3"
$ContactCount = GetMSNContactsNUM(FileRead("Example.ctt"))
For $N = 0 To $ContactCount
     MsgBox(0, "Contact " &$N, GetMSNContactsData(FileRead("Example.ctt"), $i))
Next

The two function introduced in this UDF are;

GetMSNContactsNUM("CTT FILE")

GetMSNContactsData("CTT FILE", $ContactNumber) ; aka ContactName

Interesting, just curious as how it can be applied though... :o

SIGNATURE_0X800007D NOT FOUND

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...