Euhm...nope... But I'll give you a few parts of it.
code:
public bool Initialize(long nVersion, string sUserEmail, MessengerAPI.MessengerClass oMessenger)
{
Timer tmr = new Timer();
tmr.Interval = 1000 * 10; // 10 seconds
tmr.Tick += new EventHandler(Timer_tick);
tmr.Start();
}
private void Timer_tick(object sender, EventArgs e)
{
if(names.Count > 0)
{
next++;
if(next >= namen.Count)
{
next = 0;
}
SetNewName(names[next].ToString());
}
}
Where names is an arraylist containing the names. Off course there is an option to turn it on and off, but this is the main part.