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

Search Results
Subject Author Forum Time
[update] Currency Calculator
The updates to this version 3.1 is: 1. English currency names, figured that this would broaden the audience 2. Abillity to change default output currency "/Currencies_Set_Default" using an ISO as parameter The script currentcy supports: 1. /Currenc...
MontagoScripting11-22-2006 at 01:32 PM
RE: [PRE-Release] - Sudoku Solver
i allready have an offline version (doesn't people read) im sorry i dont know how to make a GUI using MSN... but i can make one in HTML...
MontagoScripting10-29-2006 at 11:49 AM
RE: [PRE-Release] - Sudoku Solver
Well... The solver is written in ASP/Jscript... i have a solver written in Javascript, but because ASP is faster, i converted the script into ASP/Jscript You talk about a GUI... but the fact is, that a 81 integer string is much faster to input then u...
MontagoScripting10-27-2006 at 06:25 PM
RE: [PRE-Release] - Sudoku Solver
Some Sudoku's 00500190004002007010080000300920000601005008040000 9500500006007090030010001700600 00328000005000090004000603002003000700470250090001 0080070100060008000010000059200 04901000230000980050270001000690402040005000108010 34000300062090073000...
MontagoScripting10-25-2006 at 10:45 PM
[PRE-Release] - Sudoku Solver
In some few hours/days im releasing my Sudoku Solver Command : /Solve_Sudoku < 81 integers> the Sudoku matrix will then be solved by my online sudoku-solving service. Located at [url]http://www.mdk-photo.com/Solve[/url] (Mobile phones may use : [url]...
MontagoScripting10-25-2006 at 10:42 PM
Remote IP address
Hi there Im sitting on my littlebrothers PC - my homePC is online, hence MSN says my PC is online I want to remote admin my PC using Windows Remote - but my IP has changed i've tried sniffing IP-packets - and using MSNplus Ping function, but the des...
MontagoTech Talk10-22-2006 at 10:13 AM
RE: [Release] - Currency Converter
/Currencies_Set_Default will let you set the default global output... however you need to do this everytime you start messenger :( since i dont know how to adjust Registry values... maybe another day :) The error message is gone just download the sc...
MontagoScripting10-10-2006 at 08:51 PM
RE: [Release] - Cambridge Text Encoder
download the scirpt again... the new version supports auto-cambridge
MontagoScripting10-03-2006 at 09:15 PM
RE: [Release] - Cambridge Text Encoder
are you kidding ?? :) yes it does... but i must admit... that some languages are better/easier then others...
MontagoScripting10-03-2006 at 09:05 PM
RE: [Release] - Cambridge Text Encoder
UPDATE FOLKS... Version 2.5 is out... /Cambridge_ON /Cambridge_OFF guess what they do :)
MontagoScripting10-03-2006 at 08:49 PM
RE: [Release] - Currency Converter
*Renamed to Currency converter
MontagoScripting10-03-2006 at 02:00 PM
RE: [Release] - Currency Converter
xe.com charge for their Currency XML Table... so i dropped them as my reference... i know im not using exhange rates, and instead bank rates... however, i could put on 5% on each currency, to make it more real... How are the commands not recognized ...
MontagoScripting10-03-2006 at 09:29 AM
RE: [Release] - Cambridge Text Encoder
Yeah.. ill make that, didn't think people would like to write everything in 'Cambridge' :)
MontagoScripting10-03-2006 at 09:09 AM
RE: [Release] - Cambridge Text Encoder
say what ??
MontagoScripting10-03-2006 at 12:13 AM
[Release] - Active Calculator
lets say i write "today i earned 8*30 dollars" my script then converts the text into "today i earned {8*30} = 240 dollars" also the /Calc function will do this silently with a toast windows messege some bugs, but generally works... might be use...
MontagoScripting10-03-2006 at 12:11 AM
[Release] - Cambridge Text Encoder
Arcdcinog to a rescearh at Cbiardmge Uintvseiry, it d'onset mtaetr in waht oderr the lrttees in a wrod aer, the only iramopntt tihng is that the frist and lsat letetr be at the rhigt plcae. The rest can be a ttoal mess and you can siltl raed it wiou...
MontagoScripting10-03-2006 at 12:06 AM
[Release] - Currency Converter
This nifty script will let you convert currencies on the fly the best part, is that the currencies are gotten from the danish national bank, that are updated each day (nice aint it ?) however the long names of the currencies are therefore danish... b...
MontagoScripting10-03-2006 at 12:03 AM
RE: error with HttpRequest
sorry :$ This function is perfect... it was my call that had errors - shame on me :) also... i've found out how to run the code once...
MontagoScripting10-01-2006 at 12:35 AM
error with HttpRequest
im trying to make a GET command, to download an XML [code] function loadXMLDoc(url){ Debug.Trace("loading XML"); xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("GET",url,true); xmlhttp.onreadystatechange = function(){ ...
MontagoScripting10-01-2006 at 12:32 AM
RE: Problem with RegExp + Replace
var s = "Hello there, 1+1 should be 2. And 5-2 will be 3."; s = s.replace(/([0-9*/+\-()]+)/gi, function($0, $1) { return eval($1) }); Debug.Trace(s); did the trick :) now im able to do some more advanced stuff upon those expressions that are found...
MontagoScripting09-29-2006 at 09:33 AM
RE: Problem with RegExp + Replace
thanks Shondoit - works a bit better now i need to refine the regexp to capture mathpieces better - currently smileys are also captured because of ')' so im thinking that a math piece is constructed by: - a number of brackets '()' zero or more ...
MontagoScripting09-28-2006 at 11:14 AM
RE: Problem with RegExp + Replace
i want to find calculations within a text string... lets say i write "hello jim, i have 25*20 dollars" then my plugin calculated the amount --> "hello jim, i have 500 dollars" so i want to match simple math pieces
MontagoScripting09-27-2006 at 11:09 PM
RE: Problem with RegExp + Replace
ohhh... that might explain something... if the ')' is un-escaped, it might make a submatch... so, i need to escape the ')' :)
MontagoScripting09-27-2006 at 10:54 PM
RE: Problem with RegExp + Replace
no way :) /([0-9+\-()*\\\/]+)/ '+' after numeric gives trouble ')*' will look for more ')' '\\' why look for backlash ? ']+' i guess *(start) is more appropriate ?? you are right about the () => $1 matching, which is what im lookin...
MontagoScripting09-27-2006 at 10:45 PM
Problem with RegExp + Replace
i want to do something really simple - to locate numbers for calculation function... var reg_exp = "([0-9\*\/+\-()]*)"; if( Messege.match( new RegExp(reg_exp) ) ){ return Messege.replace(new RegExp(reg_exp,'gi'),"[$1]"); } ... Using the...
MontagoScripting09-27-2006 at 08:28 PM
[Hide Excerpts]