How can I log This Number?... Please read in - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: WLM Plus! Help (/forumdisplay.php?fid=12) +----- Thread: How can I log This Number?... Please read in (/showthread.php?tid=85234) How can I log This Number?... Please read in by messenpost on 08-06-2008 at 09:46 PM
Hi, RE: How can I log This Number?... Please read in by CookieRevised on 08-07-2008 at 02:47 AM
What you want to do is not possible (refering to the screenshots especially); email does not work that way. RE: How can I log This Number?... Please read in by messenpost on 08-07-2008 at 04:06 AM
first your question: i am 99.9% certain because this person "knows" things he technically could not know! i even made some "traps" by sending me some bogus information to my own account.... and he was dumb enough to let it slip out. RE: How can I log This Number?... Please read in by CookieRevised on 08-07-2008 at 10:32 AM
quote:Only if you use a hotmail/msn address and in that case you can try to monitor the registry key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\UnreadMail\<Your Windows Live Id>\MessageCount for a drop in its value. For this you can use a program like SysInternals' Regmon. (and set "HKCU\Software\Microsoft\Windows\CurrentVersion\UnreadMail\<Your Windows Live Id>\MessageCount" as its include filter) You could also monitor it with a script, but this requires some advanced Windows API calls (since you need to make it asynchronously or you'll lock up Messenger). Currently I haven't the time to make such a script, eventhough it would be a relative small. You could also make the script by using a simple registry read and a timer, but then you need to be very careful, since such a script could lock your Messenger. -- Attached is a small script which uses the timer approach, use at your own risk. I hope it works, I'm in a big hurry.... RE: How can I log This Number?... Please read in by messenpost on 08-07-2008 at 01:48 PM
EXCELLENT!!! Thank you very much : ) Problem Solved!!! I should have spent just a few more seconds looking, before I wrote my last post. There is a option where I can change the time format. Now its doing exactly what I want. PERFECT!!! Thank you so much. You helped me a lot : ) ! RE: RE: How can I log This Number?... Please read in by CookieRevised on 08-08-2008 at 01:59 AM
quote:I was thinking the same think when I was driving to work. Now that I'm home again, I've updated the script. When a decrease is detected, instead of only showing a message box with just the previous and current unread email count, it will now display: - A Messenger Plus! toast - A message box, incl. date and time - An entry in the event viewer, incl. date and time - A debug output, incl. date and time ...all will still show the previous and current unread email count of course. And since the Events Log can be saved, you would also automatically have logging to disk. (Plus! > Preferences > Messenger > Event Logging > "Record events to disc") To view the debug output; - Enable debugging in Messenger Plus! (Plus! > Preferences > General > Scripts > "Enable debugging options") - Open the Script Debugger window (Plus! > tick Show Script Debugging) - In that debugger window, select "Unread Mail Monitor". To view the Event Log output: - Enable event logging (Plus! > Preferences > Messenger > Event Logging > "Display the Event Viewer window") - Open the Event Log window: (Plus! > tick Display Event Viewer) Note about the messagebox output: When a message box is shown, this script will pause as long as you don't click on the message box's OK button. Because of this (syncronized) method, the script might miss unread email count decreases. If you wish to disable the message box then go the Script Editor and open up this script. In the first code line (script line 3) you can set bShowMessageBox to false. (Plus! > Preferences > General > Scripts > Unread Mail Monitor > Edit) quote:Make sure you entered the exact string I showed: quote:eg: HKCU\Software\Microsoft\Windows\CurrentVersion\UnreadMail\jos@hotmail.com\MessageCount Thus that is "HKCU", not "HKEY_CURRENT_USER", and don't enter the quotes. And replace <your Windows Live Id> with your own Windows Live Id, without the < >. Although "MessageCount" is indeed shorter but it will also list changes in everything else with that string in it (eg: a program which has "MessageCount" in its name, another registry setting with "MessageCount" in its path, etc...). quote:The fractional number is the amount of seconds since the last time you cleared the logging window or since the logging started. As you've found out already, click on the clock icon in the toolbar to switch between this format and the current time. quote:Download the script pack and import it in Messenger Plus! Live. It will automatically run. Importing can be done by simply double clicking on the script pack (just like you would execute a program). |