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

Search Results
Subject Author Forum Time
RE: HELP - Window backgrounds!
[code=XML] <!-- ImageElement --> <Element xsi:type="ImageElement" Id="ElmtWhatevvah"> <Position /> <!-- define for yourself --> <Mosaic>ENUMVAL</Mosaic> </Element>[/code] The ENUMVAL being one of these: [list] [*]Normal [*]ResizeToFi...
SmokingCookieScripting05-28-2009 at 07:06 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Try it and find out...
vaccinationScripting05-28-2009 at 04:07 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
And that returns the root script directory?
whizScripting05-28-2009 at 04:01 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Something like: [code=jscript] var aWshShell = new ActiveXObject("WScript.Shell"); //Read a reg key value: var ScriptPath = aWshShell.RegRead("HKEY_LOCAL_MACHINE\\Software \\Patchou\\Messenger Plus! Live\\ScriptsDir"); [/code]
vaccinationScripting05-28-2009 at 03:59 PM
RE: Emoticon Saver
[code=js]function OnWindowIdEvent_LstViewSelStateChanged(pPlusWnd, sControlId, nItemIdx, bSelectedState) { if (nItemIdx === -1) return false; // no item selected or white space clicked /* Do stuff here */ }[/code]
mattyScripting05-28-2009 at 01:49 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Applied to all validators. Thanks for the tip! ;)
whizScripting05-27-2009 at 05:37 PM
RE: Problems with vertically centering a DIV
Still doesn't work 100% It works in Mozilla, but not in MSIE... (ps: and there is still a </div> too much) :'( EDIT... hang on... omg, I think I got it... going to test some more... actually dead simple: [code=html]<td style="background:url(header...
CookieRevisedTech Talk05-27-2009 at 08:55 AM
RE: Problems with vertically centering a DIV
ok... for some reason it doesnt want to work now! EDIT: ok sorry, now this code works... [code=html]<table height="194px" width="185px" cellpadding="0" cellspacing="0"> <tr> <td style="background:url(header.png) no-repeat top left"> <di...
NanaFreakTech Talk05-27-2009 at 08:37 AM
Problems with vertically centering a DIV
Inside a table cell (which should be exactly 185x194 big, which is also the size of the background img) I have 3 DIVs: [code=html]<td style="background:url(header.png) no-repeat top left"> <div id="1" style="height:70px"></div> <div id="2" ...
CookieRevisedTech Talk05-27-2009 at 04:53 AM
RE: msn display picture changer (auto)
It's very possible using the date object in JScript... If you format a date string properly, you can use a simple [code=js] if(now_time >= time_to_change){ ChangeDP(); } [/code] which will include date and time differences :p
SpunkyScripting05-26-2009 at 10:59 PM
Greasemonkey: Hide Row in a Table if Column 3 != 0?
I got a table that is filled with this, repeated over and over and over and over. With Greasemonkey, can someone make it so if the 3rd column of that row [b]is NOT[/b] 0 it hides it? [img]http://sonicsam.net/files/dump/hidethis_12883 .png[/img] [code=...
prashkerTech Talk05-26-2009 at 10:16 AM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Nice idea for a script and it has potential (y)... but... You don't need to multiply it with 1. The next code will work just as good because the function isNaN() will already attempt to convert the variable to a number: [code=js]var sFoo = "85.1";...
CookieRevisedScripting05-25-2009 at 06:24 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
...so no one's noticed that it fails at the first hurdle yet? Script fails to create xml files. [code] <-- Start file creation. --> > Attempting to create file "C:\Users\vaccination\Desktop\Windows.xml".. . Error: Object expected (code: -214682...
vaccinationScripting05-25-2009 at 05:41 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Well, you're not implementing our sample code properly. :P You shouldn't re-enable the control when one item in the loop doesn't match the ID to test simply because you won't have [u]all[/u] used IDs matching that one ID, you have to check whethe...
MattiScripting05-25-2009 at 05:41 PM
RE: copy file
[code=js]CopyFile('c:\\test.log', 'c:\\test.txt'); function CopyFile(src, dest) { Interop.Call('kernel32', 'CopyFileW', src, dest, false); }[/code] [code=js]RenameFile('c:\\test.log', 'c:\\test.txt'); function RenameFile(src, ...
mattyScripting05-25-2009 at 05:36 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
The "Add Window/Control" validators work fine, but the "Change Window/Control" validators don't seem to recognise if the ID matches another window/control's ID - even though those bits use the same validation method... [code=js] // works fine :...
whizScripting05-25-2009 at 05:15 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Has already sent a PM, but both solutions are very similar to mine so I feel a bit better now :D
SpunkyScripting05-25-2009 at 04:07 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Those issues aren't that hard to solve! :P [list] [*]Validation of numbers (for example, it will allow "text" as a valid height measurement) [code=js]var sFoo = "85.1"; var nFoo = 1 * sFoo; //Attempt a string to number conversion if( isNaN(nFoo)...
MattiScripting05-25-2009 at 04:02 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
I can probably do the first one, but I'm not sure about the second. Would something like this work: [code=js] for (var X in WndLstId) { if (!objWnd.GetControlText("EdtId") == WndLstId[X]) { // save code here... } } [/code] EDIT: actually, I...
whizScripting05-25-2009 at 03:31 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
FnSaveMethods.js: function SaveInterface() {} [code=js]var TextFile = FileSO.OpenTextFile(FilePath, 2);[/code] Should be: [code=js]var TextFile = FileSO.OpenTextFile(FilePath, 2, true, -1 /*UNICODE*/);[/code]
mattyScripting05-25-2009 at 03:16 PM
RE: WantReturn
There is a hot key class. Check out the "Video Converter Plus!" link in my signature; it points to a script that uses the particular class ("Hotkey.js"). Using that class, you can specify what should be done to the window: [code=JScript]// The [E...
SmokingCookieScripting05-24-2009 at 08:37 AM
RE: To send email
You are not configuring the SMTP settings for the email. The object has no idea where to send the email through if you do not specify it... [code=js]SendEmail('Script <script@msghelp.net>', 'myemail@mydomain.com', 'this is a test email', '<htm...
mattyScripting05-23-2009 at 05:05 PM
RE: How to include a .log file in my personal message?
[code=js]function OnEvent_Initialize() { if (Messenger.MyStatus < STATUS_INVISIBLE ) return; Messenger.MyPersonalMessage = ReadFile('c:\\test.log'); } function OnEvent_SigninReady() { OnEvent_Initialize(); } function ReadFile(sFile) { ...
mattyScripting05-22-2009 at 07:47 PM
RE: How to include a .log file in my personal message?
You can use FileSystemObject to read the file then set the text to Messenger.MyPersonalMessage [code=js]try { Messenger.MyPersonalMessage = GetEverything('c:\\test.log'); } catch (e) {} function GetEverything(sFile) { var fso; fso = new Act...
mattyScripting05-22-2009 at 07:20 PM
RE: [Release] Photo Sharing Disabler
What you say has no sense.First of all you seem really arrogant.I have written the function coping YOUR code from the signin function of idle on demand script.So it is anyway a copy of YOUR code and saying that i think i had no reason to declare the...
TheGuruSupremacyScripting05-22-2009 at 06:54 PM
[Hide Excerpts] Pages: (51): « First « 29 30 31 32 [ 33 ] 34 35 36 37 » Last »