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

Search Results
Subject Author Forum Time
RE: OMG the new update of messenger 2009 is f****ed up ! :|
I made this once, it will finally be useful :P [code=xml] <SkinInfo xmlns="urn:msgplus:skins" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta nce" xsi:schemaLocation="urn:msgplus:skins PlusSkins.xsd"> <!-- This will tell Messenger Plus! to s...
blessedguySkype & Live Messenger01-28-2011 at 11:12 PM
RE: OMG the new update of messenger 2009 is f****ed up ! :|
[code=xml] ... <Fonts> <Font> >>> <File>\%windir%\Fonts\ARIALUNI.TTF</File><<< </Font> </Fonts> ...[/code] Possibly? In scripting prefixing the path with a \ makes it look at the absolute path not the relative path so it could be a...
mattySkype & Live Messenger01-27-2011 at 07:50 PM
RE: OMG the new update of messenger 2009 is f****ed up ! :|
Well, all you need is to declare the new font in a SkinInfo.xml and include the font file :P Refer to the skinning documentation. In gray are helpful comments. [code=xml] <SkinInfo xmlns="urn:msgplus:skins" xmlns:xsi="http://www.w3.org/2001/XMLS...
blessedguySkype & Live Messenger01-27-2011 at 07:27 PM
RE: [WEB - CONTRIB] Non-standard characters in XML
mynetx01-23-2011 at 11:28 AM
RE: Sleep
@Amec: That implementation would do the job just fine, but there's still room for improvement. [list] [*]You're trying to add elements to the timers array, but since you're using a string as key you're actually just setting an object property. Ei...
MattiScripting01-23-2011 at 11:02 AM
RE: [WEB] Navigation drop down disappears / MyPlus! Login button / Tables for layout?!
I fiddled some more with the drop down menus, and it appears that it can be somewhat "fixed" by changing the paddings on the navigation links (#menu li a). I guess the calculations with the padding using em units cause some round-off errors on the ...
Matti01-22-2011 at 07:15 PM
[WEB] Navigation drop down disappears / MyPlus! Login button / Tables for layout?!
[b]BUG: Navigation drop down disappears[/b] On any page of the beta website: [list=1] [*]Move mouse over a link in the top navigation. The drop down menu appears. [*][u]Slowly[/u] move the mouse pointer downwards. A few pixels below the link text, th...
Matti01-21-2011 at 08:36 PM
RE: I have a question about the new msn 2011?
If you install Messenger Plus! 4.9 you can create a script and insert this code [code=js]function OnEvent_Initialize() { if (Messenger.MyStatus < STATUS_INVISIBLE) return false; for (var oContact = new Enumerator(Messenger.MyContacts); !oCont...
mattySkype & Live Messenger01-21-2011 at 04:43 PM
RE: Delete a folder
That's a property of the ChatWnd object, you can set it like this: [code=jscript]ChatWnd.ChatLogEnabled = false;[/code]
whizScripting01-21-2011 at 08:26 AM
RE: [SOFTWARE - 674] (!MYMEDIA)
[code=jscript]Debug.Trace("*" + Messenger.MyCurrentMedia + "*");[/code]showswhile the song is running.
mynetx01-17-2011 at 05:26 PM
RE: [SOFTWARE - 674] (!MYMEDIA)
What happens with [code=js]Debug.Trace(Messenger.MyCurrentMedia);[/c ode]?
matty01-17-2011 at 04:37 PM
RE: Messenger.MyName in WLM 2011
You can always decide to catch exceptions, like this:[code=jscript]function DoSomething(sNewName) { [...] >>> try {<<< Messenger.MyName = sNewName; } >>> catch(e) {<<< Debug.Trace("Setting MyName is not supported."); ...
mynetxScripting01-07-2011 at 04:23 PM
RE: Messenger.MyName in WLM 2011
An error in the debugging window will cause problems to scripts, for example: [code=JScript]function DoSomething(sNewName) { [...] Messenger.MyName = sNewName; [...] }[/code] The third line of "code" within the function body will trigge...
SmokingCookieScripting01-07-2011 at 04:17 PM
RE: Guess who showed-up on New Year's day?
already did...[code=c]/* by Barf Vader */ #include <stdio.h> main () { printf("hello world!\n") }[/code] [size=1]edit: this gives me an idea too..... :p[/size]
CookieRevisedGeneral Chit Chat01-05-2011 at 05:37 AM
RE: [WEB] Plus!5 Suggestions
[list][*]When uploading a PLSK file while "Scripts" is selected, for example, it says "Invalid file type". Rather, let it autocorrect the type to "Script". This applies to other combinations as well. [*]Select a text with mouse to quote exactly...
mynetx12-25-2010 at 10:48 AM
RE: Read another HKEY
Oh thanks for your help =] that works [code=js] Reg1 = Shell.RegRead ("HKCU\\SessionInformation\\ProgramCount"); [/code] Ty.
PedroGabrielScripting12-03-2010 at 05:40 PM
Read another HKEY
Hi, I want know how to read another HKEY... Eg: [code=js] var Reg1 = 0; Reg1Path = "HKEY_CURRENT_USER\SessionInformation"+"\\Pr ogramCount"; Shell = new ActiveXObject('WScript.Shell'); function Read(){ Reg1 = Shell.RegRead(Reg1...
PedroGabrielScripting12-03-2010 at 08:35 AM
RE: How to detect fullscreen application?
Thank you. The code some-what working, but not with every fullscreen applications. For example in some cases it still fails recognize WMP (Windows Media Player) or firefox (via F11 key), but it works fine on PotP... P.S. In code from the original top...
V@noScripting11-28-2010 at 08:18 PM
RE: How to detect fullscreen application?
Your conversion from C++ is faulty. There are no structure types (RECT) or pass-by-reference operators (&) in JScript. Also, you can't access structure members using "rc.left" or "rc.top". I suggest you learn more about Interop and DataBloc befo...
MattiScripting11-28-2010 at 06:13 PM
How to detect fullscreen application?
Hello! WLM by itself has compatibility to detect fullscreen application. Can we use that feature in our scripts? Or is there another way detect it? So far I could only find [url=http://shoutbox.menthix.net/showthread.php?ti d=67047&pid=739038#pid73903...
V@noScripting11-28-2010 at 05:25 PM
RE: Smiles inside [code][/code]
no clue what that means... So, ok, only plain [noparse][code][/noparse] is buggy? That should narrow down where the bug is hiding :) [noparse][code][/noparse] [code]var test = " :) ";[/code] [noparse][code=php][/noparse] [code=php]var test = " :) ...
V@noForum & Website11-27-2010 at 10:07 PM
RE: Smiles inside [code][/code]
wdzbb version [code=php]var test = ":)";[/code] [code=html]var test = ":)";[/code] [code=vb]var test = ":)";[/code] [code=c]var test = ":)";[/code] see http://shoutbox.menthix.net/showthread.php?tid=850 00
toddyForum & Website11-27-2010 at 09:55 PM
RE: Screenshot Sender 5 Release Candidate 1 RELEASED (2011-09-06)!
After that delayed actions no longer working until script restart. P.S. Please add to hotkey action list delayed actions. It could be useful when you need capture a window with a context menu, or opened dropdown.
V@noScripting11-27-2010 at 09:18 PM
RE: HotKeys ?
Firstly, try not to revive old threads like this. They're great for reference but if you have a particular question about it, it's better to start a new thread. ;) Now, working with global hotkeys is not a very simple thing to do. Countdown Live in...
MattiScripting11-27-2010 at 10:45 AM
RE: Screenshot Sender 5 Release Candidate 1 RELEASED (2011-09-06)!
Woohoo! I'm so exited to see a new version. I've been addicted to v4 for so long unfortunately it was buggy on W7. Testing now v5, so far I'm impressed. A few minor quirks here and there, but nothing major. The first quirk I noticed is when you ad...
V@noScripting11-27-2010 at 02:38 AM
[Hide Excerpts] Pages: (51): « First « 3 4 5 6 [ 7 ] 8 9 10 11 » Last »