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

Search Results
Subject Author Forum Time
RE: Help with a menu selection
You're using EditText_SetCurSel in the wrong way. The function takes 2 numbers, and you are passing 2 strings. You should do: [code]function OnEvent_MenuClicked(MenuItemId,Location,OriginWnd) { var currenttext = OriginWnd.EditText; switch(MenuItemI...
J-ThreadScripting07-09-2006 at 01:59 PM
RE: Help with a menu selection
[code]sMenu += "<MenuEntry Id=\""+talkerList[i]+""+talkerList[i]+"\"> "+talkerList[i]+"</MenuEntry>";[/code] shouldn't that be: [code]sMenu += "<MenuEntry Id=\""+talkerList[i]+"\">"+talkerList[i]+" </MenuEntry>";[/code]
J-ThreadScripting07-09-2006 at 01:27 PM
RE: [Developers] Multiple Language Class
Well done!!! I honestly like dt's class more..:$. But this is also very usefull!(Y)
J-ThreadScripting07-08-2006 at 08:31 PM
RE: Multi Language class for scripts (request)
-dt-'s class: [url=http://shoutbox.menthix.net/showthread.php?ti d=62835][Developers] Translator Class[/url] Dead's class: [url=http://shoutbox.menthix.net/showthread.php?ti d=62834][Developers] Multiple Language Class[/url]
J-ThreadScripting07-08-2006 at 08:26 PM
RE: [HELP] Reading Reg Keys
The function returns a [url=http://msdn.microsoft.com/library/default.asp ?url=/library/en-us/jscript7/html/jsorivbarrayobje ctmeth.asp]VBArray[/url]. Use the toArray() function to get a regular array: [code]var Shell = new ActiveXObject("WScript.Shel...
J-ThreadScripting07-08-2006 at 08:16 PM
RE: [HELP] Reading Reg Keys
The MSDN says the function should return an array of numbers when you read a "REG_BINARY" value. Try debugging like this: [code] Debug.Trace("Path: "); Debug.Trace(test); Debug.Trace(" E: " + enabled); [/code]
J-ThreadScripting07-08-2006 at 04:10 PM
RE: Mac Features for Windows?
Nice thread! I really like the F9 feature of the mac, so I just tried the 2 programs, but unfortunatly it doesn't work like the mac... WinPlosion works better, but is only a trial...
J-ThreadTech Talk07-08-2006 at 02:10 PM
RE: Trying to copy some text to the clipboard
Right... I think I get it now... So let's go back to topic, I don't see why that wouldn't work... But I guess there is a better way to acces the clipboard. Maybe with some ActiveX object?
J-ThreadScripting07-08-2006 at 11:02 AM
RE: Trying to copy some text to the clipboard
I noticed that... But [url=http://msdn.microsoft.com/library/default.asp ?url=/library/en-us/cpref/html/frlrfsystemwindowsf ormsclipboardclasstopic.asp]this page[/url] is really talking about JScript... It seems like this is different from the language...
J-ThreadScripting07-07-2006 at 11:00 PM
RE: [Debug needed] Delay Script
Err, save the window in the variable... WndRepeat = ChatWnd; Place that after: strMessage = arrayMessage[2];
J-ThreadScripting07-07-2006 at 10:57 PM
RE: Multi Language class for scripts (request)
I already thought about this, and I even thought about making a class that can also acces the MP!L language strings and the WLM language strings. So you would be able to grab the basic strings like "Nickname", "Yes", "No", "Sign off" etc dire...
J-ThreadScripting07-07-2006 at 10:54 PM
RE: Trying to copy some text to the clipboard
How about using the Clipboard object? (following code copied directly from the MSDN without testing): [code]private function button1_Click(sender : Object, e : System.EventArgs) { //Take the selected text from a text box and put it on the clipboa...
J-ThreadScripting07-07-2006 at 10:48 PM
RE: [Request] Away Talker
Try [url=http://www.msgpluslive.net/scripts/browse/ind ex.php?act=view&id=36]this script[/url]. There should be an english translation somewhere, but I can't find it.
J-ThreadScripting07-06-2006 at 09:13 PM
RE: [Release] NoEmoticons 1.0
That's why I added an option to turn it off:P But thanks, it is a very simple plugin, but nice and usefull:)
J-ThreadScripting07-06-2006 at 04:50 PM
[Release] NoEmoticons 1.0
[url=http://www.msgpluslive.net/scripts/browse/ind ex.php?act=view&id=59]View the script in the script database[/url] Post all your comments on NoEmoticons 1.0.
J-ThreadScripting07-06-2006 at 04:46 PM
RE: Script for .swf or .gif into DP?
Believe me, if somebody ever finds a way to do this (which I doubt, but it is not impossible (not very likely to happen though)) he will be probably very rich.:) I am sure a lot of WLM users are willing to pay 1 or 2 $ to have their own SWF as a DP.....
J-ThreadScripting07-06-2006 at 04:40 PM
RE: Noob - Need help developing scripts
Probably a problem with encoding / line endings...
J-ThreadScripting07-05-2006 at 10:19 AM
RE: [Request] UserAccounts.CommonDialog
I am Dutch too my friend, and it seems like you do know enough english to be able to understand the posts here. That implies you actually do have enough knowledge to be able to understand the MSDN too. If you don't, you are IMHO not "good enough" ...
J-ThreadScripting07-04-2006 at 06:43 PM
RE: [Request] UserAccounts.CommonDialog
People should learn to use [url=http://msdn.microsoft.com/library/default.asp ?url=/library/en-us/shellcc/platform/shell/referen ce/objects/shell/browseforfolder.asp]MSDN[/url] :dodgy:
J-ThreadScripting07-04-2006 at 04:21 PM
RE: [Very Early Preview] Window GUI Editor
Look nice!! Unfortunatly it isn't very usefull yet... Some improvements (that are probably already on your list) are: - Being able to click a control so you can edit it - Resizing controls after you've drawn them - Moving controls - Showing the pro...
J-ThreadScripting07-04-2006 at 03:01 PM
RE: [REQUEST] Put the cmd /noicon at the front of all messages
Here it is, I'll also submit it to the official script database. Edit: That works indeed, I added an option to turn it on / off in my script(Y) Edit2: [url=http://shoutbox.menthix.net/showthread.php?ti d=62681]The "Official" Thread[/url]
J-ThreadScripting07-04-2006 at 02:48 PM
RE: [Request] seconds_since function
[code]function seconds_since(day, month, year) { var myDate=new Date(); myDate.setFullYear(year,month - 1,day); var myDate2=new Date(); return Math.round((myDate2.getTime() - myDate.getTime()) / 1000); }[/code]
J-ThreadScripting07-04-2006 at 11:23 AM
RE: [Release] NickChange 1.5
It already works, just add the color codes to your names list. When I add: [c=50]Name 1[/c] It displays the name in green:). It would be however nice to be able to define a color for all the names, not just per name. I'll see if I'll include that.
J-ThreadScripting07-03-2006 at 08:20 AM
RE: [FIXED] How to set name with personalized status?
This thread was moved from Script to Bug Reports, please see the first thread for details(Y)
J-ThreadWLM Plus! Bug Reports07-02-2006 at 09:29 PM
RE: [Howto] Get Personalized status
Yes, if you know some regular expressions, you can easily see that. The ^ stands for the beginning of the name, and the $ for the end. So to be able to find a match, there have to be a certain number (0 or more) characters (any characters you like) a...
J-ThreadScripting07-02-2006 at 10:49 AM
[Hide Excerpts] Pages: (19): « First « 2 3 4 5 [ 6 ] 7 8 9 10 » Last »