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

Search Results
Subject Author Forum Time
RE: More than 300 views to turn red..
Isn't it a good thing to have the blue so at a quick glance we can tell the difference between a new thread and one that has been recently bumped (or spammed)? This is a support forum remember and if there are blue ones then it means there hasn't ...
markeeForum & Website03-17-2008 at 09:46 PM
RE: [?] CustomLook Images & Resize
I think you might need to look at usig some GDI+ stuff. Mattike used some in Log Manager, and I borrowed some of the code for Web2Live. I think matty also used it in one of his scripts (Screenshot Sender 4?). You'll also need to look up trusty MS...
markeeScripting03-16-2008 at 11:42 PM
RE: CD
Nope, sorry. Just get a new CD and start again....
markeeTech Talk03-14-2008 at 08:23 AM
RE: First script testing
Matty needs to learn how to do better randomness.... [code]return rn_txt[Math.round((rn_txt.length-1)*Math.random()) ];[/code] Should be: [code]return rn_txt[Math.floor((rn_txt.length)*Math.random())]; [/code] Otherwise the first and last variable only...
markeeScripting03-13-2008 at 01:11 PM
RE: Interesting facts about yourself
[list][*]I know a fair few things, or at least I know where to find the answers. What things I don't know I usually make up and sound convincing (educated guesses). [*]Although my room always ends up messy, I know where everything is. I can never ...
markeeGeneral Chit Chat03-08-2008 at 10:44 AM
RE: [Request] Simple Script to send message to PHP Script
[code]function SendToPHP(email,msg){ var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); with(xmlhttp){ setRequestHeader("email",email); setRequestHeader("message",msg); onreadystatechange = function(){if(readyState==4 && status!=200) Debug.Tr...
markeeScripting03-06-2008 at 09:45 PM
RE: [sug] Can This Be Done
You can't have them start on start-up and have different ones for each account... its just not possible.
markeeWLM Plus! General03-06-2008 at 10:48 AM
RE: [sug] Can This Be Done
No you aren't wrong. The main reason is that some scripts require activation on messenger opening (or at least have the ability to do such a thing). It isn't hard for the script to make settings to be active or not, one of the options I try to gi...
markeeWLM Plus! General03-06-2008 at 09:40 AM
RE: Modify Messenger Plus!'s scripting API so that ALL scripts work on both XP/Vista
Or you could just hide the scripts that aren't compatible.... I agree with Cookie entirely, XP is used by a lot more people. The Neowin tech site has many people that like to have the latest in technology and if it is that close among them, then t...
markeeWLM Plus! General03-04-2008 at 02:54 AM
RE: your fave tv program??
And a couple of months ago, and a while before that, and a while before that, etc, etc, etc...
markeeGeneral Chit Chat03-02-2008 at 10:22 AM
RE: Theory on making messages infinite length
Just the fact that when changing the message value of a recieved message through a script can only be equal or less than the original length is a good enough way of showing that there is a limitation. If Patchou had the ability to make a recieved m...
markeeScripting03-02-2008 at 08:22 AM
RE: DPs in signed in/out toasts?
I think what we need is an optional variable added to the method, and it can be the path to an image. If that variable exists (and is a valid image?) then plus will use a different interface that has space for an image like that in WLM. That's just...
markeeWLM Plus! Help03-02-2008 at 03:19 AM
RE: SUGGESTION: Automatic greeting text
Did you mean something like [thread=tid=63043]? If not, exactly what did you want it to do (step by step would be nice if you dont mind)
markeeWLM Plus! General03-02-2008 at 03:11 AM
RE: Just got HD-DVD
I think you were a touch too early Patches... [url=http://feeds.gawker.com/~r/gizmodo/full/~3/23 9437448/x+box-360-hd+dvd-player-to-drop-to-50]link age[/url]
markeeGeneral Chit Chat02-23-2008 at 12:16 PM
RE: Error due to forced new line
But it wasn't like that, I made it between a couple of slashes. I dont think I should need to change my work anyway, if I really wanted to I could just use a different text editor for those couple of lines and plus wouldn't worry about it (unless...
markeeWLM Plus! Bug Reports02-19-2008 at 12:29 PM
RE: [Request] Pass IM message to Bluetooth cell phone message
http://www.salling.com/forums/viewtopic.php?p=2251 1#22511 That is a possible solution. It is not the best, but is something for now at least.
markeeScripting02-10-2008 at 10:41 AM
RE: looking for a function
Scripts can't do anything with groups. Noone has found a reliable method to use to extract or change group data (as far as i am aware). Hence this is an adequate reason as to why we don't have these options.
markeeScripting02-10-2008 at 08:29 AM
RE: how to use special characters in a switch
I was talking specifically about the smodifier, your first link has g,iand m, and the second only talks about g and i.
markeeScripting02-09-2008 at 02:13 AM
RE: how to use special characters in a switch
I couldn't find any documentation online about it being part of JScript. However it is used for making the likes of "." match ANY character including \r and \n (both of these are not able to be matched by "." normally). I wonder if we can als...
markeeScripting02-08-2008 at 05:28 AM
RE: how to use special characters in a switch
I think you mean the following expression.... [code]var reQuestion = /\bquestion\b/i;[/code] \b just denotes the end of a word (beginning or end), if you were to have the lines of a commar or questionmark after the word "question" then yours wo...
markeeScripting02-07-2008 at 01:13 PM
RE: Firefox being very slow :(
Personally I will never use Internet Explorer again because I know what damage I can do with it and all it takes is acceptance of activeX objects which many people don't even think about accepting because they are forever bombarded with alerts and ...
markeeTech Talk02-05-2008 at 10:16 AM
Error due to forced new line
I was writing a regex for a script and got an "Error: Expected ')' in regular expression (code: -2146823268)" and the only reason I can find for this is that the regex goes over multiple lines (yes I know it is long, but it should be specific. I...
markeeWLM Plus! Bug Reports02-04-2008 at 12:45 PM
RE: Gettin data from "/" commands
I just wanted to update Cookie's regex to something that is a little better IMHO [code]if (/^\/([^\s\/]\S*)\s*(.*)/.exec(sMessage) !== null) {[/code] Cookie's old code didn't allow for / to be used elsewhere through the command (you can't us...
markeeScripting02-04-2008 at 11:52 AM
RE:
Simply put, unlesssomeone installs a script, themselves, on THEIR computer, then there is no way possible for you to control it. There is the occassional flaw in Microsoft's work, but these are usually fixed promptly and everyone is forced to upgra...
markeeScripting02-04-2008 at 10:58 AM
RE: Question???
markeeScripting02-03-2008 at 07:00 AM
[Hide Excerpts] Pages: (65): « First « 2 3 4 5 [ 6 ] 7 8 9 10 » Last »