Search Results |
Subject |
Author |
Forum |
Time |
RE: Windows 7 Skin Hey, I Have deleted Alberto46's rip. I would be happy to add the Windows skin to the site under your own name. You'll need to change two little things before I can accept it on the site though:[list][*]In Skininfo.xml, add the following between the... | Menthix | Skinning | 05-07-2009 at 02:44 PM |
RE: Looking for a simple script it makes it go around a set of quotes... where yours would do it around the whole string if there were quotes in it... i dunno how the [] make it work but in php they work... | NanaFreak | Scripting | 05-07-2009 at 09:42 AM |
RE: Looking for a simple script Just for my benefit now... how do the square brackets help? I thought they were just for character sets | Spunky | Scripting | 05-07-2009 at 09:38 AM |
RE: Looking for a simple script the regex needs to be changed to this: [code=js]/[\"](.+?)[\"]/gi[/code] [size=1]it was just placing it around the whole message[/size] so the highlighted line would be: [code=js]Message = Message.replace(/[\"](.+?)[\"]/gi, "[c=4]\"$1\"[... | NanaFreak | Scripting | 05-07-2009 at 06:30 AM |
RE: Looking for a simple script Colour will only work with MP!L btw... Can't test these as I've just got to work... [code=js] Message = Message.split("\n"); for( var s in Message){ if(Message[s].substr(0,1)=="~"){ Message[s] = "[a=3]"+Message[s]+"[/a]"; }... | Spunky | Scripting | 05-07-2009 at 06:14 AM |
RE: How can I found out who (email) sent the msg/received the msg? What if two contacts have the same name? Wouldn't that trigger on both of them? | Lou | Scripting | 05-07-2009 at 12:24 AM |
RE: How can I found out who (email) sent the msg/received the msg? There aren't any really reliable ways of doing this. I say that because Messenger Plus! doesn't know what the email is only the name. Now you can iterate through the ChatWnd.Contacts object [code=js]for (var oContact = new Enumerator(ChatWnd.Contac... | matty | Scripting | 05-06-2009 at 10:50 PM |
RE: New line problem, when \n doesn't work! The point is: Notepad shows you "\n", but Windows makes it "a backslash followed by small N". In other word, what seems to be "\n", is actually "\\n". You may replace that sort of stuff using a RegExp: [code=JScript]new RegExp("\\n",... | SmokingCookie | Scripting | 05-05-2009 at 11:27 AM |
RE: to see a file line by line and thus to exploit its values [url=http://msdn.microsoft.com/en-us/library/h7se9 d4f(VS.85).aspx]Searching the internet is a great start...[/url] [code=js]// Declare FSO var fso = new ActiveXObject("Scripting.FileSystemObject"); // Open the file for reading. f = fso.OpenTextFile... | matty | Scripting | 05-04-2009 at 07:58 PM |
RE: x-men origin wolverine skin plus 2009 Why I suspect he isn't really the creator of "his" skin and there is copied content from Ryddick's Windows 7 skin: note: His skin (Ryddick's skin) Images 4302.png (4302.png), 59004.png (20510.png), 59005.png (20511.png), 59006.png (20512.png), 5... | blessedguy | Skinning | 05-04-2009 at 06:38 PM |
RE: Searching text files Very elegant, I never thought of using foreach to work through each file or even stream_to_get_line! The more you use the more you learn! | stoshrocket | Tech Talk | 05-04-2009 at 12:35 AM |
RE: Searching text files its even easier than that... [code=php] <?php $dir = "D:/"; $toFind = "xxx"; foreach(new DirectoryIterator($dir) as $file){ if(!$file->isDir()){ $ext = trim(strrchr($file, '.'), "."); if($ext == "txt"){ $... | -dt- | Tech Talk | 05-04-2009 at 12:15 AM |
RE: Searching text files Not nearly as easy as WDZ's method above, but just for completion and curiosity... [code=php] $needle = 'needle'; //value to search in the text files $dir = './dir/'; //dir to folder containing text files $files = scandir($dir); $arr_count = c... | stoshrocket | Tech Talk | 05-03-2009 at 07:27 PM |
RE: MySQL That's because the "syntax" of your json object is incorrect so the parser throws an error :D [hr] [code]SONIC THE HEDGEHOG:{"Title":"Sonic The Hedgehog","PSM":"A blue streak speeds by - It\\'s Sonic The Hedgehog"} Sonic The Hedgehog:{... | felipEx | Scripting | 05-03-2009 at 02:57 AM |
RE: MySQL Unfortunately that website doesn't seem to be loading here... just wondering what do you get as output so we can have a look. Also, you might want try out this [url=http://www.thomasfrank.se/downloadableJS/JSON editor_example.html]online-JSON-editor... | felipEx | Scripting | 05-03-2009 at 01:12 AM |
RE: Replacing image 1831? This is the image replacement entries for 1831 and 1832: [code=xml] <Picture Id="1831"> <File>UI/1831.png</File> <Metadata> <Colorize>false</Colorize> <UMTop>7</UMTop> <UMBottom>1</UMBottom> </Metadata> </Pictur... | ryxdp | Skinning | 05-02-2009 at 11:11 PM |
RE: Further PHP / MySQL Help Would something like this start you off? [code=php]<?php $id = "blah1" // Replace with Flight ID being viewed $rank = "blah2"; // Replace with logged in user's rank $rs = mysql_query("SELECT rank FROM itzeddie_flights WHERE id='{$id}'"); if(... | davidpolitis | Tech Talk | 05-01-2009 at 02:26 PM |
RE: Script for webcam? It doesn't work because you need to create the ActiveXObject in JScript rather than setting a reference in VB. Also, the messenger API you are refering to is actually Windows Messenger that ships with Windows XP, not Windows Live Messenger, so it wi... | Spunky | Scripting | 05-01-2009 at 10:50 AM |
RE: Error: unknown (code: -2147418113) Made a few changes to the script - it wasn't working properly, so i fixed it :D [code=javascript] var originalPSM=''; var originalPSM1=''; var idleSeconds=0; var isIdle=0; var isBusy=0; var PSMnumber=0; var PSM1number=0; var PSMtype=1; var secon... | Dr Nick | Scripting | 05-01-2009 at 07:05 AM |
RE: Hide send / received message Hen, it is not possible to do _exactly_ what you want. You can only change the text which is recieved in your own chat window, thus not on the contact's side. And it can't be longer than the original recieved text (not a problem your case). But als... | CookieRevised | Scripting | 05-01-2009 at 04:08 AM |
RE: [release] Music now playing What it should do is update the media string with the proper artist and album filled in so that it will still display in the contact list. Then it will display the custom string in the convo window. Edit: Looks like the change needs to happen on line... | Baggins | Scripting | 04-30-2009 at 11:39 PM |
RE: Error: unknown (code: -2147418113) [code=js]var originalPSM=''; var originalPSM1=''; var idleSeconds=0; var isIdle=0; var isBusy=0; var PSMnumber=0; var PSM1number=0; var PSMtype=1; var seconds=15; var allowed=1; var aPSMArray = new Array [ 1 : 'Growing old is mandatory, g... | matty | Scripting | 04-30-2009 at 08:04 PM |
RE: [Reqest] Script that says heyy to whoever signs on That's a bit more difficult. Basically, you'd have to store the time when they went online in some kind of global object and when they come online again, check the time difference first before sending the message. Here's some documented example c... | Matti | Scripting | 04-30-2009 at 04:12 PM |
RE: Error: unknown (code: -2147418113) Or the other way around [code=js]function OnEvent_Initialize() { if (Messenger.MyStatus < STATUS_INVISIBLE) return; // Do stuff here } function OnEvent_SigninReady( Email ) { OnEvent_Initialize(); } [/code] Which in my opinion is better becau... | matty | Scripting | 04-30-2009 at 12:33 PM |
RE: Error: unknown (code: -2147418113) Make sure you use [code=js] function OnEvent_Initialize() { if ( Messenger.MyStatus > 1) { OnEvent_SigninReady( Messenger.MyEmail ); } } function OnEvent_SigninReady( Email ) { // Start script here... } [/code] } | Spunky | Scripting | 04-30-2009 at 12:08 PM |