jeantje Posted April 7, 2009 Posted April 7, 2009 It can read msn ctt files and give the contacts in it, Please report any bugs in comments.Download: CTT_MSN.ZIP
Skrip Posted April 9, 2009 Posted April 9, 2009 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]
BinaryBrother Posted April 9, 2009 Posted April 9, 2009 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. #include "MSN_CTT.au3" $ContactCount = GetMSNContactsNUM(FileRead("Example.ctt")) For $N = 0 To $ContactCount MsgBox(0, "Contact " &$N, GetMSNContactsData(FileRead("Example.ctt"), $i)) NextThe two function introduced in this UDF are;GetMSNContactsNUM("CTT FILE")GetMSNContactsData("CTT FILE", $ContactNumber) ; aka ContactNameInteresting, just curious as how it can be applied though... SIGNATURE_0X800007D NOT FOUND
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now