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

Search Results
Subject Author Forum Time
RE: only master can login !
Simply checking the email address.. [code]function OnEvent_Signin(Email){ if(Email != "your@email.com"){ MsgPlus.DisplayToast("Only Master", "This messenger is only for the owner"); Messenger.Signout(); } }[/code]
roflmao456Scripting09-10-2009 at 03:10 AM
RE: [release] WLMini Music Player 2.42
thanks, confirmed. I will try to get a release before school starts next week :P bleh, had a huge error and gotta start from scratch
roflmao456Scripting09-04-2009 at 08:24 AM
RE: [Request] DP by status
Will keep that in mind, thanks
roflmao456Scripting07-09-2009 at 07:36 PM
RE: [Request] DP by status
Here's the script I said I would create. Access the configuration window through the menu. [hr] [size=1]Matty, what's the use of the INVISIBLE/OFFLINE pictures? :P[/size]
roflmao456Scripting07-09-2009 at 06:08 PM
RE: [release] WLMini Music Player 2.42
[size=1]I know... :sad:[/size]
roflmao456Scripting07-09-2009 at 05:33 PM
RE: [release] WLMini Music Player 2.42
Possible release version. WLMini Music Player 2.37 is now available for download. It has not been submitted to the database since I still need to find bugs. Changes: - Recoded completely from scratch - Script performance should be at the maximum now ...
roflmao456Scripting07-09-2009 at 05:33 AM
RE: [Request] DP by status
I will create the script for you. [size=1]will edit this post to attach script when finished[/size]
roflmao456Scripting07-09-2009 at 05:01 AM
RE: I'm fed up with emo personal messages, I want a way to hide them.
There's a patch to remove that.. (Mess Patch, APatch..) or you can create a custom skin that will remove the personal message. I don't think there are any ways to hide the personal message for certain contacts :P
roflmao456Scripting07-03-2009 at 06:26 PM
RE: [release] WLMini Music Player 2.42
oh silly me, forgot the tr array was only for the 'format' param (which would appear correctly on 8.5) :P try this instead: Line 35 of 'wlmini.events.js': [code=JScript] case 2:setNowPlaying(1,MPSMText,media.getItemInfo("tit le"),media.getItemI...
roflmao456Scripting06-15-2009 at 09:09 PM
RE: [release] WLMini Music Player 2.42
This should work... [size=1]edit: for 8.5 users[/size] Line 34 of wlmini.events.js: [code]var tr=["{0}","{1}",[/code] swap the numbers: [code]var tr=["{1}","{0}",[/code] after that, the %title tag will be %artist tag and %artist tag will be ...
roflmao456Scripting06-14-2009 at 09:31 PM
RE: [release] WLMini Music Player 2.42
Yes, edit the "Now Playing" option in the Preferences (Script Menu > WLMini Music Player > Preferences [u]or[/u] Playlist > Menu > Preferences). [size=1]btw: it depends on your ID3 tags.[/size]
roflmao456Scripting06-14-2009 at 02:16 AM
RE: [release] WLMini Music Player 2.42
The script is using the Amazon AWS API for the album art. If you check the source code, you should see the file "dt.coverart.js" The Album Art feature depends on your ID3 tags on the music files. [size=1]For example, if you bought your music on iT...
roflmao456Scripting06-12-2009 at 09:35 PM
RE: Emoticon Saver
cool (Y) :P although I don't use custom emoticons much/at all :P [offtopic]lol @ the filename: Emo Saver[/offtopic]
roflmao456Scripting05-30-2009 at 03:31 AM
RE: [request] "Now Watching" (seen from mess.be)
1. don't know how to fix :sad: 2. I'm not at the 'window hooking' level atm :P 3. the toast acts kinda similar to WLM's.
roflmao456Scripting05-30-2009 at 02:54 AM
RE: [request] "Now Watching" (seen from mess.be)
Try this :) [size=1]Thx to Spunky for the title grabbing code[/size] edit: Change line 33 and 34 to [code] if(lyt)setNowPlaying(false); lyt = "";[/code]
roflmao456Scripting05-29-2009 at 08:43 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Looks interesting.. /me tries it out edit: neat (Y)
roflmao456Scripting05-27-2009 at 06:50 PM
RE: [release] WLMini Music Player 2.42
yes
roflmao456Scripting05-20-2009 at 10:59 PM
RE: Scripts button
If you already have that option checked, then a skin or patch may have removed it :P
roflmao456WLM Plus! Help05-20-2009 at 12:29 AM
RE: HELP - Email from OnEvent_ChatWndReceiveMessage!
[code=JScript]function OnEvent_ChatWndReceiveMessage(obj,orig,msg,k) { var Emails = new Array(); var OriginEmail = ""; for(var e = new Enumerator(obj.Contacts); !e.atEnd(); e.moveNext()) { Emails.push(e.item().Email); if...
roflmao456Scripting05-14-2009 at 08:06 PM
RE: made some good scripts
I guess 3 of them except for slacker are self-explanatory
roflmao456Scripting05-14-2009 at 01:23 AM
RE: [release] WLMini Music Player 2.42
2.36 released :) lol just had to post today :P
roflmao456Scripting05-12-2009 at 11:22 PM
RE: to see a file line by line and thus to exploit its values
You can try out the ActiveXControl: Scripting.FileSystemObject and use the function ReadLine.
roflmao456Scripting05-04-2009 at 07:46 PM
RE: Error: unknown (code: -2147418113)
I usually look over here for the functions to Scripting.FileSystemObject: http://www.tutorial-web.com/asp/fso/ just have to know how to interpret that into jscript and you're fine. [code]var fso = new ActiveXObject("Scripting.FileSystemObject"); f...
roflmao456Scripting05-02-2009 at 03:46 AM
RE: Error: unknown (code: -2147418113)
yeah it's possible just try out the activexobject: Scripting.FileSystemObject :P
roflmao456Scripting05-02-2009 at 03:23 AM
RE: Error: unknown (code: -2147418113)
I think it's better to use a [i]switch[/i] or even the Array instead of all those else ifs..
roflmao456Scripting04-30-2009 at 07:41 PM
[Hide Excerpts] Pages: (39): « First « 1 2 3 [ 4 ] 5 6 7 8 » Last »