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

Search Results
Subject Author Forum Time
RE: DATABASE?
what?
segosaScripting07-08-2006 at 09:24 PM
Do you proofread your posts?
. EDIT: Sorry, I changed the options so I had to reset the votes.
segosaPoll Center07-08-2006 at 07:24 AM
RE: [Solved]Download a file from an external server using PHP
[code] function geturl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER , 1); ...
segosaTech Talk07-07-2006 at 09:19 PM
RE: Ripping variables out from a string?? [solved]
Matty doesn't seem to have understood your question. You can use the ".split" method of a string variable to return an array. For example: [code] var blah = "#DoThat;103;208"; var arr = blah.split(";"); var var1 = arr[1]; // note it starts at ...
segosaScripting07-07-2006 at 09:15 PM
Trying to copy some text to the clipboard
I'm trying to make a function that will copy text to the clipboard. I'm using the Windows API. This is the code I have so far: [code] function set_clipboard_text() { var tmp = "This is a test"; var l = tmp.length * 2 + 2; if (Intero...
segosaScripting07-07-2006 at 04:27 PM
RE: [Request] AntiMock
Don't go into business with idiots :p
segosaScripting07-07-2006 at 07:15 AM
RE: Only access to special emails..
it's &&, not 'and'.
segosaScripting07-06-2006 at 10:07 PM
RE: Run Windows Media Player from WLM
[code]function OnEvent_ChatWndSendMessage(ChatWnd, Message) { if(Message == "!wmp") { ChatWnd.SendMessage("/run C:\\Program Files\\Windows Media Player\\wmplayer.exe"); return ""; } ...
segosaScripting07-06-2006 at 08:16 AM
RE: [Latest version: 4.20.0159] HopperLive Final Released
He does most of the work inside a DLL which also includes displaying the toasts and thus the 3 minute time limit is checked inside DLL and you won't be able to remove it. If you really want to annoy your contacts it's not hard to make a script your...
segosaScripting07-06-2006 at 06:56 AM
RE: Opinions on the Sponsor Testing?
I was chosen for Spain. Who's the other one?
segosa07-06-2006 at 06:49 AM
RE: [Latest version: 4.20.0159] HopperLive Final Released
" HopperLive.zip" What is the point in zipping a zip file? :P
segosaScripting07-05-2006 at 10:34 AM
RE: [Request] Couple of 'em.
Listen, if your contact can *see* your display picture then that means that they actually have it on their computer already. You cannot stop them from doing something with a file they have on their hard drive. It's impossible.
segosaScripting07-05-2006 at 07:06 AM
RE: [release] Streaming Sound Plugin [BUGFIX] & Outlook Email Script
You didn't remove your debugging code in OnEvent_Initialize. You have "Debug.DebuggingWindowVisible=1;" there... kind of annoying to have that pop up. :p EDIT: wshshell.RegWrite("HKCU\\Software\\Zwobot.com \\Streaming Sound Plugin\\PlaySou...
segosaScripting07-04-2006 at 05:44 AM
RE: New Script: dynamic DP changer based on mood from emoticons
Since I wanted this for myself I coded it earlier, but I won't release it as it was originally your idea. Although I'm already bored of that idea, mainly due to a lack of good images to use. :( Ah well, it was fun to code.
segosaScripting07-03-2006 at 09:16 PM
RE: New Script: dynamic DP changer based on mood from emoticons
Include a bunch of DPs by default by all means, but make sure users can customise them too.
segosaScripting07-03-2006 at 04:44 PM
RE: Load / Unload Script (when WLM is running or not) - Script Installer
Make a 'fake edit' to one of the script files (e.g., add a space to the end, remove it, save) or something like that. Bit of a crappy and unreliable way though.
segosaScripting07-03-2006 at 10:59 AM
RE: offline blocker!?!?!
Translation: [quote] Well, I don't think this is a good script at all! With this script you will no longer have any privacy on msn, and if everyone uses this script then everyone in your contact list can see who blocked who and that's really stupi...
segosaScripting07-03-2006 at 06:45 AM
RE: [Howto] Get Personalized status
How did you go from [i]"Man, I really need to learn Regex! That makes no sense to me at all.[/i]" to an expert? Were you sarcastic with your original post or are you just a quick learner?
segosaScripting07-02-2006 at 03:52 PM
RE: [Resource] Win32 API Constant Reference
[b]All[/b] of those were in the original file. My "auto converting" just didn't catch them. Don't forget this was meant to be a quick reference to find the values of constants, not a file with entirely valid JScript. It was shawnz' idea to crea...
segosaScripting07-02-2006 at 11:18 AM
RE: [Resource] Win32 API Constant Reference
http://m00.cx/win32api.txt Does it get the CookieRevised seal of approval? EDIT: Bah, VB also has Not which needs to be converted too. /me fixes..
segosaScripting07-02-2006 at 09:59 AM
RE: [Resource] Win32 API Constant Reference
Hmm, I see now, just a place where my regex didn't catch a Type declaration. I'd bother fixing it, but I suppose the file's a bit useless now since it's inaccurate/incomplete :P
segosaScripting07-02-2006 at 09:34 AM
RE: [Resource] Win32 API Constant Reference
Please point out an example... EDIT: shawnz, I think the reason yours doesn't work is because of stuff like this: [code]Windows.prototype.SECTION_ALL_ACCESS = STANDARD_RIGHTS_REQUIRED | SECTION_QUERY | SECTION_MAP_WRITE | SECTION_MAP_READ | SECTION...
segosaScripting07-02-2006 at 07:37 AM
RE: [Resource] Win32 API Constant Reference
That only has a few values of constants, though. And all the examples are C# and VB. :(
segosaScripting07-01-2006 at 08:19 PM
RE: [Resource] Win32 API Constant Reference
You're meant to either find the value of the constant you need or copy/paste a few of them into your script, not ALL of them. Although I suppose if you placed that in an external js file it'd be useful (btw, usage is Windows.API_NAME).
segosaScripting07-01-2006 at 08:06 PM
[Resource] Win32 API Constant Reference
Sometimes when scripting and I need to make an Interop.Call call to a Windows API function that takes a parameter which is a constant, such as MB_OK for MessageBox or WM_CLOSE for SendMessage, I need to find out the value of the constant and the way ...
segosaScripting07-01-2006 at 07:55 PM
[Hide Excerpts] Pages: (42): « First « 9 10 11 12 [ 13 ] 14 15 16 17 » Last »