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

Search Results
Subject Author Forum Time
RE: Weird bug [Contact Online but Offline :x]
I'm not saying the plus icon is wrong :p And "it just seems that Plus! hasn't captured the Signed Out event" seems pretty serious to me :P
Pai06-12-2006 at 10:45 PM
Weird bug [Contact Online but Offline :x]
This just happened to me: [img]http://img157.imageshack.us/img157/2395/onlin eoroffline5ur.jpg[/img] The contact has a sound notification on signin (that was triggered), everything in MP!L points to it being Online (away actually) but WLM shows the co...
Pai06-12-2006 at 08:49 PM
RE: [Question] Isn't string.replace supposed to replace all occurences ?
Thanks again Cookie, you saved my day :) Regular Expressions are thA solution :P
Pai06-12-2006 at 12:54 AM
[Question] Isn't string.replace supposed to replace all occurences ?
According to http://msdn2.microsoft.com/en-us/fk49wtc1.aspx But when I try to: [code] var dPic = "a b c d e"; dPic = dPic.replace(" ","<space>");[/code] it returns [code]a<space>b c d e[/code] Something I'm doing wrong ?
Pai06-11-2006 at 10:49 PM
RE: [Question] How to hook ActiveX events ?
I was using OnClose instead of Close (I'm also working with winsock) and I was expecting winsock::Close() to be triggered when I would close the object with winsock.Close(), I was wrong :P It is now working as intended ! Thanks again -dt- edit: well...
Pai06-09-2006 at 10:49 AM
RE: [Question] How to hook ActiveX events ?
Thanks for the tip -dt-, but are you sure that works ? If you are, maybe I have the events for my ActiveXObject wrong because I still can't get any to work, tho now the script "validates" normally !
Pai06-09-2006 at 09:09 AM
RE: [Question] How to hook ActiveX events ?
Yes, with "." or "::" the script doesn't even "validate" (the menus for the script aren't created so I can't test anything). Thanks for the [noparse] lesson :P
Pai06-08-2006 at 09:27 PM
[Question] How to hook ActiveX events ?
According to "oficial" JScript documentation and various examples, the correct way to do this would be: [code]var obj = new ActiveXObject("some.thing"); function obj:: OnEvent() { // no space between :: and OnEvent(), just no-smiley-protection /...
Pai06-08-2006 at 09:15 PM
RE: [Question] Any way I can get a Winsock ActiveXObject working ?
Well I didn't know that, nor the page says anything about it ... If an admin or Patchou wishes I can remove the links!
PaiScripting06-08-2006 at 07:45 PM
RE: Serious problem with logging (XHTML, maybe text also has it)
Yes Patchou but that's the point I can't reproduce this accuratly, for example with the same person in a period of 10 minutes the contact writes something so a chat window opens up, I respond and close the window, and this loops for like 10 times. ...
Pai06-08-2006 at 07:42 PM
RE: [Question] Any way I can get a Winsock ActiveXObject working ?
Right, but that is way too much trouble if you can just find a way to get the Winsock ActiveX to work.. After googling for the afternoon, I found the solution ! [u]This page[/u] offers the download of [u]a file[/u] that fixes the winsock issue. So, I...
PaiScripting06-08-2006 at 07:22 PM
RE: Installer closing messenger
I agree, maybe some "cold" WLM terminate could be made by the installer if it detects WLM running 5 or so seconds after it was supposed to shutdown ?
Pai06-08-2006 at 05:10 PM
RE: Serious problem with logging (XHTML, maybe text also has it)
Sunshine, thanks I didn't find that topic, nor I was sure that it was only the first line (actually I'm quite sure it isn't just the first line, but all lines the contact sais in a row when he opens the window; as I have the feature to store all l...
Pai06-08-2006 at 05:06 PM
Serious problem with logging (XHTML, maybe text also has it)
After going through some of my log files, I noticed that some lines from my contacts are [b]missing[/b] ! Specifically, the ones they write when they open my window. I close the chat windows a lot, actually most of the time after I respond I close th...
Pai06-08-2006 at 03:15 PM
RE: [Question] Any way I can get a Winsock ActiveXObject working ?
Thank you Cookie, I actually use Borland Delphi so I figure the license would already be installed ... Also, I can import Winsock through the ActiveX import wizard, but when I try to use it it says "License information for TWinsock not found." so t...
PaiScripting06-08-2006 at 02:58 PM
RE: Small glitch in plus! menus
Can't you make it use an item scheme other than "Selected Items" ? 'Cause that will suck |: And I'm sure people will notice it when it goes public !
Pai06-07-2006 at 08:58 PM
RE: [Question] Any way I can get a Winsock ActiveXObject working ?
Why the hell does my Winsock ActiveX need a license and noone else needs it ? :S And is there any way to "reinstall" winsock ? Also, this might be a problem for scripts that use this ActiveX, as there might be other people that have the same proble...
PaiScripting06-07-2006 at 08:54 PM
RE: [Question] Any way I can get a Winsock ActiveXObject working ?
I downloaded and installed ActiveX Manager 1.4 (thanks -dt-) and I have Microsoft Winsock Control 6.0 (SP6), tho in the version column appears as 1.0, installed and registered and it's ProgID is "MSWinsock.Winsock.1" ... So according to Cookie's...
PaiScripting06-07-2006 at 11:39 AM
RE: Event Logging - Yes, again ...
Yes Patchou (terribly sorry for not remembering to update this topic), it is finally [b]working as expected[/b] in 228 :)
Pai06-07-2006 at 06:48 AM
RE: [Question] Any way I can get a Winsock ActiveXObject working ?
I appreciate everyone's explanation, but before I started this topic I googled a bit (ok a lot) and found a couple of Winsock ActiveXObjects ("OSWINSCK.Winsock" and "MSWinsock.Winsock") which I have tried and didn't work, so "MSWinsock.Winsock...
PaiScripting06-07-2006 at 06:43 AM
RE: [Question] Any way I can get a Winsock ActiveXObject working ?
Yes you are right, but my point was that "something wrong" happened when I declared the new ActiveXObject, stoping the function so that it didn't reach the line to return something. I've tried that return ws.LocalIP in the past and also didn't w...
PaiScripting06-06-2006 at 11:27 PM
RE: [Question] Any way I can get a Winsock ActiveXObject working ?
Doesn't seem to work here |: [code]function Test() { var ws = new ActiveXObject( "MSWinsock.Winsock.1" ); return 'abc'; }[/code] doesn't return anything [code]function Test() { //var ws = new ActiveXObject( "MSWinsock.Winsock.1" ); return 'a...
PaiScripting06-06-2006 at 05:46 PM
RE: Events notification, selected contacts
To see who's on the list you just press "Edit" and the contacts are selected there, no need for a "+".
Pai06-06-2006 at 10:12 AM
[Question] Any way I can get a Winsock ActiveXObject working ?
If it's possible, which one ? Thanks :P
PaiScripting06-06-2006 at 10:04 AM
RE: MSN ID calculator
Keep in mind that if you want your own ID, just use [code]var ID = Messenger.MyUserId;[/code]
PaiScripting06-06-2006 at 09:54 AM
[Hide Excerpts] Pages: (8): « First « 1 2 3 4 [ 5 ] 6 7 8 » Last »