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

Search Results
Subject Author Forum Time
RE: [Release] FileServer Script v1.1.2
Woah that definitely shouldn't happen ! It should delete only the selected user, and if there isn't any selected it should display an error message! that's how I coded it and how it works here :x Also, the "Registered Users (whtv)" is handled by...
PaiScripting07-21-2006 at 11:54 AM
RE: Before getting LIVE, Facing the facts, Question too.
Geez, and they say I'm lazy ...
PaiScripting07-20-2006 at 12:30 PM
RE: newb @ work...
The problem is that you have to include the { } s in an if statement, except if you only want one line of code executed. For clearing up: [code]if (condition == "whatever") DoStuff('hello');[/code] [code]if (condition == "whatever") { var do...
PaiScripting07-19-2006 at 09:15 PM
RE: newb @ work...
You did, and you didn't :P You did remember to *check* if the ID pressed was MnuAbout, but you did it the wrong way. It should be like this: [code] function OnEvent_MenuClicked(IdClicked) { if (IdClicked == "MnuAbout") var Wnd = MsgPlus.CreateWnd(...
PaiScripting07-19-2006 at 07:02 PM
RE: [Release] FileServer Script v1.1.2
Thanks cloudhunter, that won't work because it's not JScript related, but I'll find a way don't worry about it :P @ arvit: Is it really needed to have two languages for the same country ? I mean, doesn't a person understand both languages if he...
PaiScripting07-19-2006 at 01:56 AM
RE: [Release] FileServer Script v1.1.2
@ cloudhunter: that is a nice idea indeed, and I like it :P so there's a high chance I'll do that (dunno how yet) ! @ bigguy_132: you can edit what folder to access, and you can allow or deny access to sub-directories from the root folder ! I don'...
PaiScripting07-18-2006 at 11:55 AM
RE: [Release] FileServer Script v1.1.2
1st: You have my PM :) 2nd: it's fixed, [s]not public yet ![/s] download updated version :P 3rd: I don't think that's a very smart thing to do/implement, considering Plus! lack of control over file transfers ... You would either be flooded with fi...
PaiScripting07-18-2006 at 12:39 AM
RE: [Release] FileServer Script v1.1.2
@ Controversy92: are there any errors displayed in the Debug Script log when you use those commands? If so, please post them here :) @ sql: I couldn't reproduce that, but that might be caused by the quick fix for the !cd ..\..\..\..\ security is...
PaiScripting07-15-2006 at 06:10 PM
RE: [Release] FileServer Script v1.1.2
Uhm that's strange, can you open up the debugging dialog and show me what is the error that appears (if any) when you click the Install button ? Thank you About the spanish translation, please PM me your e-mail if you're interested :)
PaiScripting07-14-2006 at 09:28 AM
RE: [Release] FileServer Script v1.1.2
/me forgot to cancel the timer for inactivity when the user manually logged out :wall: Fixed :) Tkx
PaiScripting07-13-2006 at 06:48 PM
RE: [UPDATE] Gmail Checker 1.11 - get alerts upon new emails in your gmail accounts
Any plans to shows the subject and sender information of received mails in a window? Great tool :)
PaiScripting07-13-2006 at 11:58 AM
RE: [Help] Getting font of contact.
If you have HTML logging enabled you can always retrieve it from the log file :^)
PaiScripting07-13-2006 at 11:26 AM
RE: [Help]Returning the inside of a string...
Uhmm without the g works like a charm yes :P Well thanks I guess, even tho it's not my thread I learned something :)
PaiScripting07-13-2006 at 11:21 AM
RE: [Help]Returning the inside of a string...
That would be correct if we were using PHP (preg), but doesn't apply to JScript ... text only contains a string with the matched expression ([noparse][b]moo[/b][/noparse] in this case), and not an array with the matches :S Test case: [code][noparse...
PaiScripting07-13-2006 at 08:32 AM
RE: [Help] Replacing Text Using Scripts (I think I'm dumb lol)
You use: [code] function OnEvent_ChatWndSendMessage(pChatWnd, sMessage) { if (!sMessage.match('www') && !sMessage.match('http')) { // no link found, replace stuff // here put the code that I showed you (that you used in your reply) or use segos...
PaiScripting07-13-2006 at 12:43 AM
RE: First MP!L Chatlog Skin
As we're in for suggestions, how about displaying the custom.css statement before the actual default .css styles in the HTML ? It's just that IE displays it correctly, but firefox still displays the default style.
Pai07-13-2006 at 12:32 AM
RE: [Help]Returning the inside of a string...
To extract the inside of [tag]hi[/tag]: [code] var tagInside = tags.replace(/\[tag\]|\[\/tag\]/gi,""); [/code] result: tagInside contains "hi"
PaiScripting07-12-2006 at 06:01 PM
RE: [Help] Replacing Text Using Scripts (I think I'm dumb lol)
Then you did something wrong, because it does work ;) Test case: [code] var str = "aaaaaaaaaaaaaaaaaaa" var str1 = str.replace("a","A"); Debug.Trace(str1); var str2 = str.replace(/a/g,"A"); Debug.Trace(str2); [/code] returns: [code] Aaaa...
PaiScripting07-12-2006 at 05:48 PM
RE: [Help] Replacing Text Using Scripts (I think I'm dumb lol)
To replace all occurrences of one letter, you must use regular expressions. They come in a form of /pattern/switch , and you must use the g switch for global search (for more information on regular expression, google it) so, the correct code for repl...
PaiScripting07-12-2006 at 01:55 PM
RE: [Release] FileServer Script v1.1.2
Thanks for the availability (snAke_LeAder and Xano until now :P) About the "guest" account, I have to find out a "nice" way to implement this without risking security, so for now you can always create an account (user: guest pass: guest or 0 or w...
PaiScripting07-12-2006 at 12:25 AM
RE: [Release] FileServer Script v1.1.2
@ cloudhunter: what ? Anyway, the script is now designed for being multi-language, so I need some translators :P If you're available to translate about 100 lines I'll send you the file containing the english strings. You'll have a few days to tran...
PaiScripting07-11-2006 at 07:34 PM
RE: [Help/ Early Preview] Myspace integration
Try this: [code]function OnGetScriptMenu(Loc) { /* * Create Plus Menu */ var menu = '<ScriptMenu>'; menu += '<MenuEntry Id="MnuChkAll">Check All Now</MenuEntry>'; menu += '<MenuEntry Id="MnuInbox">Inbox</MenuEntry>'; menu += '<MenuEntry Id...
PaiScripting07-11-2006 at 11:11 AM
RE: [Help/ Early Preview] Myspace integration
You forgot to close the "<ScriptMenu>" ... Add to the end: [code]menu += '</ScriptMenu>';[/code]
PaiScripting07-11-2006 at 12:50 AM
RE: [Release] FileServer Script v1.1.2
Outch indeed :S expect a quick fix for that huge security problem in the next minutes (I'll update this post when ready) edit: fixed! Force your auto-update to update to 1.1.1 (Todo: make a "Force Update" menu option) Please report if this fixed t...
PaiScripting07-10-2006 at 10:53 PM
RE: [Release] FileServer Script v1.1.2
uhm that's strange, none of those should happen ... could you do me a favor and zip your "%PROGRAM_FILES%\Messenger Plus! Live\Scripts\FileServer" directory and email ( paizito[at]gmail.com ) it to me ? Of course without the users.txt and dirs....
PaiScripting07-10-2006 at 11:56 AM
[Hide Excerpts] Pages: (8): « First « 1 [ 2 ] 3 4 5 6 » Last »