quote:
Originally posted by Yustme
the doc said to zip it up and rename it to .plcs or something. i use 7zip, should be the same right?
"
To ZIP up" means using the
ZIP compression format. It doesn't mean compressing the files with whatever compression method you want.
So it doesn't matter what program you use to ZIP files, as long as it is the ZIP format.
Note that you actually do not need any external program for to create ZIP files either. Windows can make ZIP files out-of-the-box. Simply select the files you want to ZIP in Windows Explorer, right click your selection, choose 'Send To' and select 'Compressed Folder'.
quote:
Originally posted by Yustme
is that the only thing that changed? because if i reinstall msg plus 5 i dont wanna do a system restore. takes forever ;(
System Restore should never be used in any case.
If you want to remove Plus! simply remove it using the uninstaller from Windows 'Remove Program and Files'. The same for Windows Live Messenger.
The same for reinstalling; Simply reinstall the programs using their respective setups.
You should only use System Restore when you encounter a severe system crash or whatever. It is NOT a backup tool, NOR an uninstaller!
This said, I don't see why you should re-install or remove anything. The problems are in your own coded script, nothing else.
quote:
Originally posted by Yustme
and what reg paths do you mean? this one:
Registry_SetKeyValue()
That is not a reg path, that is a function.
I mean the hard coded registry paths you have store in the variables
WLMKey,
MPLkey, etc
EDIT: I see that you've changed
MPLkey in your new version, but note that it now wont work on Plus!4 though.
quote:
Originally posted by Yustme
well it works, it always has.
that < 2 was test code and also, it started out by itself as soon as msn starts. but that was the wrong way. also that code has been commented out.
It didn't work; it couldn't be working in Plus!5. Second, Always remember it is absolute vital that if you want people to help you debug your script that you provide
all and the completely
accurate up-to-date script files, even if you think some files don't matter (they usually do matter). It is not possible to properly help out otherwise.
PS: That '
< 2' check in the
Initialize event shouldn't be testcode. It is actually what you need to use instead of
if(WLMRunning() < maxMsnWindows). Aka, it is the
if(WLMRunning() < maxMsnWindows) which is part of the trouble too. The reason being that you should only start this script once! And it is this one instance which should drive all the other Messenger instances. Remember that each time a Messenger instance starts all the Plus! scripts will run too, hence all the other "AutoSignin" scripts should NOT perform any actions (unless you want to end up in a dead loop). Only the first one which started the whole chain should open the other Messenger instances. As such, you MUST use '
< 2' (or
'== 1') and not '
< maxMsnWindows'.