What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [help]Message notification

[help]Message notification
Author: Message:
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
32 / Male / Flag
Joined: Apr 2004
RE: [help]Message notification
@matty: The two functions you posted there are for getting the low- and high-order bytes, not the low- and high-order words! A word consists of 2 bytes (16 bits), so you need to alter your functions a bit.
Javascript code:
function loword(n){ return n & 0xffff; }
function hiword(n){ return (n >> 16) & 0xffff; }


This post was edited on 02-06-2009 at 06:23 PM by Matti.
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
02-06-2009 06:21 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[help]Message notification - by DaAniv on 02-06-2009 at 04:13 PM
RE: [help]Message notification - by matty on 02-06-2009 at 05:52 PM
RE: [help]Message notification - by Matti on 02-06-2009 at 06:21 PM
RE: [help]Message notification - by DaAniv on 02-06-2009 at 06:28 PM
RE: [help]Message notification - by matty on 02-06-2009 at 06:43 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On