RE: About Personalized Status ??
When you talk about two accounts, you're talking about two different and independant processes (although it is the same program, they are two different things).
In order to let them communicate with eachother you need one which gives an instructions to the other and vice versa, but in such a way that they wont conflict with eachother. In other words, you need something to let them syncronize.
There are advanced ways of doing this with Windows APIs by creating semaphores, mutexes, etc. But those also require call backs which isn't possible in pure scripting alone.
Or you could broadcast a system wide windows message. But this requires your script to be able to react on such broadcasts (and it also may not react on its own broadcasting of course).
Or you could (still advanced, and more dodgy IMHO) send a 'simple' window message to a specific window from one process to the other. But in order to know to which window you need to send it, you need again a global identifier between the two, eg: a window class name, or some user defined data bytes in a window. This requires on its turn to modify the window which is created by your script using Windows APIs. And it would require the window to always be there (it can be hidden though).
All in all, it isn't that straightforward to do something like that at all and requires advanced scripting (and very good knowledge of the Windows APIs), but it is not impossible to do.
------------------
A simple method/trick you can do is to let the communication take place over Messenger itself. Thus from account 1 you send a specific chat message to account 2 which will react upon it.
But of course, this requires that both accounts are signed in and online, that the msn servers are online, etc...
It is also not very secure and might fail in some situations.
--------
EDIT: fixed some spelling
This post was edited on 07-19-2008 at 08:23 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
|