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
Hi just PM'd you explaining the situation :) About the downloader, I really don't want to implement any of this to FS, there are scripts being developed to allow resume and other features in file transfers. The most I'll implement in FS in the fut...
PaiScripting08-03-2006 at 10:28 AM
RE: [Release] FileServer Script v1.1.2
I just forgot to change the code to translate that text, don't worry about it :P The same for the multiple-windows-bug, it's fixed :P
PaiScripting08-01-2006 at 02:52 PM
RE: [Release] FileServer Script v1.1.2
I just need the translations, all windows have been resized to acommodate all strings so don't worry about that :p
PaiScripting08-01-2006 at 02:18 PM
RE: [Release] FileServer Script v1.1.2
Ok people I'm now fully on vacation and I'll start developing 2.0, expect it soon :) About that errors you are having with the login commands, I suspect it's something related with the auto-logout feature, but you'll have it fixed for 2.0 !
PaiScripting08-01-2006 at 11:41 AM
RE: [Release] Xniff (ActiveX Packet Sniffer) - Examples inside
There isn't a bug, it's just that the ActiveX doesn't distinguish MSN accounts, just packets. So, if you have two messengers, there are two instances of the ActiveX loaded, and both of them receive the packet that was sent and generate the notify....
PaiScripting07-31-2006 at 04:40 PM
RE: [Release] Xniff (ActiveX Packet Sniffer) - Examples inside
@ nx01rules: yeah it does, it just a normal ActiveXObject, like Scripting.FileSystemObject, you can use them the times you want. @ CookieRevised: thanks, your opinion is always appreciated :) About the open/close notifier, I based that code on my tes...
PaiScripting07-31-2006 at 10:19 AM
RE: [Release] Xniff (ActiveX Packet Sniffer) - Examples inside
Yes, you're right, MSWinsock has that issue ! Plik code is much more reliable :) Actually, I used that function in the examples posted. I've added a couple of full-documented script examples, so you can start there to understand how the ActiveXObje...
PaiScripting07-31-2006 at 12:14 AM
RE: I need a little help please ^^
You can [code] var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("POST", 'http://www.url.com/script.php', true); xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); //if posting to a html form ...
PaiScripting07-30-2006 at 06:15 PM
RE: [Release] Xniff (ActiveX Packet Sniffer) - Examples inside
Like stated in the documentation: [code] Example 2 ScriptInfo file used to create a Script Pack. During import, the "ExtraFuncVB.dll" ActiveX will be registered with resvr32. <DotNetFiles> <FileName>ExtraFuncVB.dll</FileName> </DotNetFiles> [/c...
PaiScripting07-30-2006 at 04:31 PM
RE: [Release] Xniff (ActiveX Packet Sniffer) - Examples inside
I believe[code] ws = new ActiveXObject( "MSWinsock.Winsock" ); ipaddress = ws.LocalIP; [/code]is easier, but I made it so that the developer can set what IP to listen because there are people with multiple network adapters.
PaiScripting07-30-2006 at 03:54 PM
[Release] Xniff (ActiveX Packet Sniffer) - Examples inside
Starting with the whole discussion about window open/close notifiers, with questions to get the contact's font, and some other things people would like to access but can't with the current script engine, I decided to try and create an ActiveX based...
PaiScripting07-30-2006 at 01:23 PM
RE: Needed Scripting Feature
Insert text where ? The typing area ? If that's what you want, SendMessage() and EditText do what you want. If you're looking for something else, it's better if you give more details :p
PaiScripting07-28-2006 at 05:55 PM
RE: How To Call Upon Random Files
what's get_random() anyway ? to generate a random number you have to use Math.Random() ... unless you created a function to do this and named it get_random(), but as you didn't post them I have to ask :p then, you don't use sound[whichsound] again...
PaiScripting07-24-2006 at 11:25 AM
RE: [Release] FileServer Script v1.1.2
Indeed, the script sends the files with the usual WLM transfer method, and does not require that the script is installed on both ends, so I couldn't possibly implement resume :) nor I want to, because it would require the script to be on both server...
PaiScripting07-23-2006 at 08:05 PM
RE: [Request] Online/offline hopper
You don't need a script, you can just create a Quick Text with [code]/appearoffline /online /appearoffline /online /appearoffline /online[/code] and name it /hop
PaiScripting07-23-2006 at 04:32 PM
RE: Rich Edit Control
Almost a month later, I've the same problem :S Is there a way to do this ? I mean, adding rich text through code Thanks
PaiScripting07-23-2006 at 12:24 PM
RE: [help] destroying a window without crashing WLM
I couldn't use WM_CLOSE directly (didn't work here), but I found this workaround that is working as expected: [code]Interop.Call('user32','SendMessageW',wnd .Handle, 0x0112, 0xF060, 0)[/code] 0x0112 for system command 0xF060 for close Thanks all...
PaiScripting07-23-2006 at 03:19 AM
RE: [Release] FileServer Script v1.1.2
Uhm, that happens when there isn't a empty line in the end of the configuration file (dunno why, it just does :x) and can be caused by manually editing the file :x If you do, make sure you keep an blank line at the end of the file :p
PaiScripting07-22-2006 at 09:03 PM
RE: [help] destroying a window without crashing WLM
Yeah I should have said that it's not a PlusWnd that I want closed, but a conversation window one :P Sorry 'bout that. @ Plik: Thanks I'm gonna try it :)
PaiScripting07-22-2006 at 07:59 PM
RE: Help creating my first script
[code] function flash(){ for (i = 0; i < 10; i++) { Messenger.MyName = "[c=40]" + contactsname + "[/c]"; Messenger.MyName = "[c=0]" + contactsname + "[/c]"; } function OnEvent_Initialize(MessengerStart) { var contactsname = Messenger.MyName ;...
PaiScripting07-22-2006 at 05:51 PM
RE: [Release] FileServer Script v1.1.2
oh, yeah, but it doesn't matter actually as they're independent :P and don't worry about the translation, I already said it was in the code, I forgot to tell it to go fetch the translated string for that component :P All translations are OK and wo...
PaiScripting07-22-2006 at 05:45 PM
RE: [Release] FileServer Script v1.1.2
Using the example you provided: Can't be like this: [folder] 1) [folder] 2) [file] 3) [file] 4) Must be like this: [folder] 1) [folder] 2) [file] 1) [file] 2) :P I don't remember much from IRC (it's over a couple of years I've...
PaiScripting07-22-2006 at 05:35 PM
[help] destroying a window without crashing WLM
I'm trying to destroy a window through the API (plus doesn't offer functions to do this), but either instantly or soner or later WLM crashes ... I can hide/show windows, close them (this doesn't destroy them, just sorta minimizes them) and everyth...
PaiScripting07-22-2006 at 04:37 PM
RE: [Release] FileServer Script v1.1.2
@ Ices_Eyes: all translations are OK :) I'll need some extra strings, but I'll e-mail you guys when I finish implementing the features I want ! @ SonicSam: That's really odd :S I really have no clue of what can be wrong, the section of code is unt...
PaiScripting07-22-2006 at 04:30 PM
RE: [Release] FileServer Script v1.1.2
It's not in the public yet, but I fixed it already for the next version :P I just re-downloaded 1.1.1 and fixed the !cd issue because it was big, and didn't remember the small things :P I forgot to close the Configuration window when the Customize ...
PaiScripting07-21-2006 at 01:51 PM
[Hide Excerpts] Pages: (8): « First [ 1 ] 2 3 4 5 » Last »