What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: [Request]Poll Script
I may have a bash at making this... Obviously though, I'll make it so that questions get sent to online contacts only and that you can have an ignore list, as a few of my contacts might not like the continuous messages all the time. Use 2 commands:...
SpunkyScripting08-20-2006 at 11:33 PM
RE: Random Numbers
Thanks guys! Didn't work at first, but I'd missed off a closing bracket :$ Heres the finished script incase anybody is interested... EDIT - Start the message with a space if you do not want it to be sent using the script to add colour. Also, mes...
SpunkyScripting08-20-2006 at 11:17 PM
Random Numbers
I know that there must be a random function that I can use for my scripts, I just can't find it. I tried: [code] myNum = Random(15); [/code] It's for a colourful text program I made for a friend...
SpunkyScripting08-20-2006 at 10:51 PM
RE: Window Close after Signout
Cookie, you beat me to a couple of the things in there... I was looking through the documentation (like a good little boy) and realised he would need to enumerate chat.Contacts. I also started thinking about the Interop.Call as I wasn't able to find...
SpunkyScripting08-20-2006 at 10:23 PM
RE: Window Close after Signout
[code] function OnEvent_ContactSignout(Email){ var contact=Messenger.MyContacts.GetContact(Email); var chats = Messenger.CurrentChats; var e = new Enumerator([b]chats[/b]); for(; !e.atEnd(); e.moveNext()){ var chat = e.item(); var contact1=chat.Conta...
SpunkyScripting08-20-2006 at 10:06 PM
RE: Window Close after Signout
I'm guessing that would require some way of hooking the WLM itself... Some sort of SendKeys command maybe, but that would be a bit messy and awkward to do
SpunkyScripting08-20-2006 at 09:50 PM
RE: Window Close after Signout
Does chat.Contacts return the email or name of the contact, couldn't tell by quickly glancing at the documentation... It could just that. Also, it may possibly be that "chat.Close()" should be "chat.Close(0)", as I think it MUST have an exit cod...
SpunkyScripting08-20-2006 at 09:42 PM
RE: Replace() Help
Ok, I knew I did it different before lol :P Whats the "new RegExp" part do then?
SpunkyScripting08-19-2006 at 12:38 AM
Replace() Help
I searched the forums for this, but the code doesnt seem to quite work in the exact way I want *-) I'm making a script that converts a message to a code (in group convos, only people that have the script will recieve the decoded message). I can repl...
SpunkyScripting08-19-2006 at 12:17 AM
RE: [Request] Fast & Simple Away/Busy System :)
Thanks a lot, thats fantastic! The XML file was either generated by XMLSpy using the Schema or was borrowed from another file. I use the same XML file for most of my interfaces and just change controls and things. I've been using ActionScript (Flash...
SpunkyScripting08-12-2006 at 03:33 PM
RE: Play all regular sounds for specific Contacts while Busy
I looked in the documentation to check for this and it used single slashes. I suppose it is an escape character so needs to be used to cancel itself out though :p
SpunkyScripting08-12-2006 at 12:00 PM
RE: [Request] Fast & Simple Away/Busy System :)
Ok, I'll change some of things around. The reason for using the registry a lot is because globsl variables just didn't seem to be working (would change to undefined when read from a function). I didn't realise there was a way to use a date or tim...
SpunkyScripting08-12-2006 at 11:58 AM
RE: Detect Messenger Plus?
Ok thanks anyway... I'll see what I can do. I could make it ping everybody at once on startup and save the responses :D Anybody have an idea what happens if you ping someone and they don't have Plus? Would they see a message (or would they see one ...
SpunkyScripting08-11-2006 at 05:39 PM
RE: [Request] Fast & Simple Away/Busy System :)
I think I understand what you mean :p I don't think you can change font colour without using Plus! colour tags though... WLM doesn't have any tags that you can sue and applies formatting to the whole message
SpunkyScripting08-11-2006 at 05:33 PM
Detect Messenger Plus?
I did a quick search about this, but found nothing... Is there a way to detect if the contact you are talking to is using Messenger Plus? Does it alter anything about WLM such as the version number or add some kind of identifier? I'm just asking b...
SpunkyScripting08-11-2006 at 05:24 PM
RE: [Request] Fast & Simple Away/Busy System :)
If you want to choose different colours, people would be able to see the [c=?] tag the same way you can see the [b] tag if they don't have Plus! I gotta ask a question about this anyway :p
SpunkyScripting08-11-2006 at 05:15 PM
RE: Play all regular sounds for specific Contacts while Busy
[code] MsgPlus.PlaySound("C:\temp\wlm\sounds\messeng er\03_newalert.wav") [/code] has to be [code] MsgPlus.PlaySound("\C:\temp\wlm\sounds\messe nger\03_newalert.wav") [/code] as it's an absoloute path, not relative. (Just for future ref...
SpunkyScripting08-11-2006 at 12:37 PM
RE: Play all regular sounds for specific Contacts while Busy
You mean this? I know you can turn off sound notifications using Plus! for certain contacts. If this is possible using a script, then you can disable sounds from unwanted contacts when your status is set to busy and then the others will still play
SpunkyScripting08-10-2006 at 07:50 PM
RE: [IDEA] PM Sender
I don't think it's possible to EVER do that is it?
SpunkyScripting08-10-2006 at 07:41 PM
RE: [Release] PSM+ 4
The script still appears to have some issues and just randomly doesn't like people :D Works fine on my PC though. Just need some time to neaten some code up and I'll submit it... Working only half day tomorrow so I should have some spare time. [Sli...
SpunkyScripting08-10-2006 at 07:29 PM
RE: [IDEA]a popup that allows you to read.....
So, it'd work for people that do pay ;) Doesn't Outlook still download messages though or something? I remember there being a big thing about it. How does WLM access your emails? There must be a way to hook into that. I'm quite interested in this ...
SpunkyScripting08-10-2006 at 07:17 PM
RE: Customized "Now Playing"
[url=http://shoutbox.menthix.net/showthread.php?ti d=61021]This post[/url] has a script for creating your own custom strings for the "Now Playing" function using variables such as {title} and {album}. I'm sure that you could just add your personal ...
SpunkyScripting08-10-2006 at 07:15 PM
RE: [IDEA]a popup that allows you to read.....
This might be hard to do as it's more web based. On the other hand, it might not be too hard as it should just be a matter of using POP3 to get the info.
SpunkyScripting08-10-2006 at 07:08 PM
RE: Play all regular sounds for specific Contacts while Busy
I know you can play sounds during a toast, so why not be able to do it at other times? :s
SpunkyScripting08-10-2006 at 05:10 PM
RE: [IDEA] PM Sender
It would be nice if you could send the PM without anything visually happening for the user. I've got a feeling that any scripts for this would "flash" really quickly... =/ Doesn't matter if it does, just would be a nice thing to have.
SpunkyScripting08-10-2006 at 04:52 PM
[Hide Excerpts] Pages: (146): « First « 140 141 142 143 [ 144 ] 145 146 » Last »