Monthly Archive for September, 2004

Page 2 of 2

MSN Cards store opens

This morning (Thursday, Sept. 09th) the MSN Cards store opened in France. The store was sold out in less than 2 hours, a great success!

If you want to increase your chances on getting Buddy Cards, come (very) early 7:00 AM every Thursday, Friday and Saturday!

JnrzLoader

JnrzLoader09 is a memory patcher/editor for MSN Messenger. It will load MSN Messenger into memory and will modify some of its internal commands by changing some bytes inside its memory space. It will open many MSN Messenger's instances and will sign you in under the “Appear Offline” status.

Messenger:Mate

Messenger:MateMessenger:Mate is feature enhancing software for MSN Messenger that integrates seamlessly to add useful features that enhance your daily experience using the best instant messaging software available today. With features such as real contact list docking, rich HTML conversation logging that records everything as you see it and Themes to cheer up the look of Messenger, you’ll wonder how you ever did without Messenger:Mate.

Version information

Meeting by Wire has been watching MSN/Windows Messenger releases right from version 1, keeping track of all the known changes. Unfortunatly, they stopped keeping track after MSN Messenger 5.0.0543, but it’s still an interesting read.

Meeting by Wire Version Watch, Page 2

Creating a custom MSN Today page

This article explains how to create a custom MSN Today page for use with TabServe.

The MSN Today window must be shown by the page itself using some Messenger API with JavaScript. This is the function that shows the window, put it in the <head></head> tags.

<script language="JavaScript" type="text/javascript">
function ShowMSNToday(popInFront){
   var p,e;
   e = window.external;
   if (e != null){
       p = e.MsgrHost;
       if (p != null){
           p.ShowMessengerHostWnd(popInFront);
       }
   }
}
</script>

Use the onload event in the body tag to call that function. Using the body onload event ensures the window is only shown when the page is fully loaded, images and all.

<body onload="ShowMSNToday(0);">

Custom MSN Today pages should be sized 555×450px, the window cannot scroll, so be sure to stick within that size, or use frames.

If you want to use an existing page and/or don't wan't to do all the JavaScript code, then you can use TabServe's MSN Today provider. Use it like this: http://services.fanatic.net.nz/msntoday.php?http://www.yoursite.com/ and it will load http://www.yoursite.com/ in the MSN Today window inside a frame.

Update: alexp2_ad posted on the forum a better way of framing a page inside the MSN Today window. TabServe’s MSN Today provider has been updated to use this method.