Hi
You can override the script functions to get a url for the photo:
For example:
put this script into messenger.aspx , after other script tags :
function ChatUI_GetInstantAvatar(user)
{
return "DownloadMyUserPhoto.ashx?UserId="+user.UserId;
}
Of cause you need to create the DownloadMyUserPhoto.ashx , and redirect to the photo's url.
Regards , Terry .