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

Search Results
Subject Author Forum Time
RE: Request: word list(s)
there is a difference between jumbling and anagraming the other day i wrote some python to solve the 9 letter word from the target in the SMH you can also use a similar principle to find real anagrams [code=python] from __future__ import with_stateme...
JarrodGeneral Chit Chat07-07-2009 at 06:32 AM
Chinese (?!) symbol in "What I'm listening"
When [code=xml]<Element Class="PSMIcon" LayoutPos=left Margin=Rect(0,0,2,0) Content=rcimg("msgr",621) ContentAlign=topleft AddBehavior=DUI::Glow(rcint("msgr",9007),rcfloat ("msgr",9008),rcclr("msgr",9009),rcclr("msgr ",9010))/> [/code] is u...
blessedguySkinning07-06-2009 at 04:25 PM
RE: MySQL vs Text Files
Well I don't use mysql because I don't like programming php, I prefer to program python and sqlite3 is native to > python 2.4. however since mysql and sqlite3 are very similar my points are still valid think of an sql table like a table in excel, e...
JarrodTech Talk07-06-2009 at 12:14 AM
RE: Fetch Webpage without Freezing WLM [SOLVED]
[code=jscript]var objAjax = new ActiveXObject("Microsoft.XMLHTTP"); var strUrl = "http://sonicsam.net/xboxXXX.php?" + new Date().getTime(); >>>objAjax.open("GET", strUrl, true); // async<<< objAjax.onreadystatechange = function() { if(objAjax....
mynetxScripting07-02-2009 at 08:21 PM
RE: Fetch Webpage without Freezing WLM [SOLVED]
[code=js]var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open('GET', 'http://sonicsam.net/xboxXXX.php?'+date.getTime( ), true); xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4) { Debug.Trace(xmlhttp.response...
mattyScripting07-02-2009 at 08:19 PM
Fetch Webpage without Freezing WLM [SOLVED]
[code=js] var temp = WinHttpReq.Open("GET", "http://sonicsam.net/xboxXXX.php?"+date.getTime( ), false); WinHttpReq.Send(); strResult = WinHttpReq.ResponseText;[/code] WLM freezes until the page has completely loaded (even in the browser, because...
prashkerScripting07-02-2009 at 07:55 PM
RE: [help] Insert last message to textarea
http://mpscripts.net/docs/ref-chatwnd-edittext.php http://mpscripts.net/docs/ref-chatwnd-editchangeal lowed.php [code=js]if ( pChatWnd.EditChangeAllowed === true ) { pChatWnd.EditText = 'this is some text'; }[/code] pChatWnd is inherited 4 ways ...
mattyScripting07-02-2009 at 01:58 PM
RE: [Preview] MP - Development Environment
Disable the Close Tab Confirmation in the options. On a side note I can't get it to run at all on Vista Business 32Bit. Does it rely on having MP!L installed? If so that explains it as this is my work computer. [b]Suggestion:[/b] Extend the intelli...
mattyScripting07-02-2009 at 01:01 PM
RE: Half-Blood Prince Skin [Help D: ]
I did that, but then the skin doesn't show up in the list of skins on Preferences/Customize!/Skins =/
totalsanitySkinning07-01-2009 at 09:56 PM
RE: Half-Blood Prince Skin [Help D: ]
[code=xml] <?xml version="1.0" encoding="UTF-8"?> <SkinInfo> <Information> <Name>Half-Blood Prince</Name> <Description>I have taken my Harry Potter obsession to a new level! I'm not sad, I'm just dedicated. </Description> ...
robert_dllSkinning07-01-2009 at 08:38 PM
RE: [Preview] MP - Development Environment
I can't open a script with the next code: [code=xml] <?xml version="1.0" encoding="utf-8"?> <ScriptInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta nce" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:msgplus:scripts"> <In...
robert_dllScripting07-01-2009 at 05:19 PM
RE: Searching for similar variable - php
Do something with [url=http://ca3.php.net/similar_text]similar_text( )[/url] [code=php]<?php $list = file('list.txt'); $string = "dog"; foreach $list as $tree { similar_text($string, $tree, $percent); if ($percent > 75) { echo 'Did you mea...
prashkerTech Talk06-30-2009 at 08:41 PM
RE: PDF Scripting Document
Well there is a few ways of getting it: [code=js]/* Looping through the contact list */ for ( var oContact = new Enumerator ( Messenger.MyContacts ); !oContact.atEnd(); oContact.moveNext() ) { Debug.Trace ( oContact.item().Name ); } /* If you kno...
mattyScripting06-30-2009 at 02:38 AM
RE: Interface Writer | [release] 3.0 | 22/08/2010
1) You can use ".getAttribute()" to get a value from an "<element type="value"/>" tag, and ".selectSingleNode()" + "[node].text" to get a value from an "<element>value</element>" tag. Is this right? 2) Can I use ".selectSingleNode()" ...
whizScripting06-28-2009 at 09:30 AM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Never mind, I started with the same amount of questions :P Oh and sorry for the late answer. Had no PC for over a week :S
SmokingCookieScripting06-28-2009 at 07:13 AM
RE: How to send a meesage to more than one contact?
Step 1: Populate an array of emails Step 2: Loop the emails to create a chat window and send a message [code=js] var aEmails = new Array(); aEmails.push ( 'johndoe@hotmail.com' ); aEmails.push ( 'johndoe1@hotmail.com' ); for ( var sEmail ...
mattyScripting06-26-2009 at 02:31 PM
RE: Messenger Plus: How To Read a Text File?
That totally depends on what is static in "hi robert". [list] [*]If you want to read the first word of a file, you can use a regular expression on the file's content: [code=js]var sContent = "hi robert"; var sResult = sContent.match(/^\b(\w+)...
MattiScripting06-25-2009 at 09:45 AM
RE: Line/Separator
I realize I am reviving a very old thread of mine, but I have an issue with this very line at the moment. I am using a BottomBar element to place my buttons, I have 6 buttons in the LeftControls and 1 button in the RightControls. I want to place this...
mathieumgScripting06-21-2009 at 01:35 AM
RE: Download a File
Woot :) thx. It works now! New Question: Is there a way to find out a path, for example, to the MSN Script ? So it will automatically update itself?
leetkingScripting06-20-2009 at 01:01 PM
RE: Download a File
That's because "OutFile" has to be a file path, not only a folder path. So you should change that to something like: [code=js]var Url = "http://www.msgpluslive.net/favicon.ico"; var OutFile = "C:\\favicon.ico"; MsgPlus.DownloadFile(Url, OutF...
MattiScripting06-20-2009 at 12:55 PM
RE: HELP - Arrays in the registry!
Well, I have had a look, but I'm still confused with the whole idea of XML reading/writing. :S
whizScripting06-20-2009 at 11:55 AM
RE: HELP - Arrays in the registry!
Provided "Id" and "Title" were saved as a string (and read out as a string), yes... [size=1]PS: since this is JScript, you could also do: [code=jscript] var WndLstId = ReadRegistry("Lst", "Id"); WndLstId = WndLstId.split(","); var WndLstTit...
CookieRevisedScripting06-19-2009 at 09:34 PM
RE: HELP - Arrays in the registry!
[code=js]var TmpLstId = ReadRegistry("Lst", "Id"); WndLstId = TmpLstId.split(","); var TmpLstTitle = ReadRegistry("Lst", "Title"); WndLstTitle = TmpLstTitle.split(","); // ...[/code] Like that?
whizScripting06-19-2009 at 03:56 PM
RE: Basic Questions - LaTeX
A few thoughts, which probably go against a bit of what people have suggested so far: [b]1)[/b] To read the width and height of a PNG you don't need any big library or other JScript files from other scripts. That's extreme overkill, especially if y...
CookieRevisedScripting06-19-2009 at 09:14 AM
RE: HELP - Arrays in the registry!
Blah, sorry for not making it clear.. You'll need to some variable to save the return value of the split() function, like [code=jscript] var Msg = "Item1,Item2"; var arrayOfItems = Msg.split(","); [/code]
MnjulScripting06-18-2009 at 08:15 PM
[Hide Excerpts] Pages: (51): « First « 26 27 28 29 [ 30 ] 31 32 33 34 » Last »