Jump to content

MSN Contact File Handler


jeantje
 Share

Recommended Posts

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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...