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

Search Results
Subject Author Forum Time
RE: [Help]Listview insert column
[code=JavaScript]function InserColumn(hWnd,iCol,Header) { //Message constants var LVM_INSERTCOLUMN = 0x101B; var LVCF_TEXT = 0x4; var LVCF_WIDTH = 0x2; var cx= Interop.Allocate(4)//How do I know how much bytes I need? cx.WriteWord(0, 50) v...
DaAnivScripting02-08-2009 at 06:11 PM
RE: [Help]Listview insert column
I don't really get how to set the LPLVCOLUMN structure [code]Interop.Call("user32", "SendMessageW",GetControlHandle("LsvSentences" ),"LVM_INSERTCOLUMN",2,LPLVCOLUMN); [/code]and this is fine for the sendmessage?
DaAnivScripting02-08-2009 at 02:52 PM
RE: [Help]Listview insert column
how do you write it?
DaAnivScripting02-08-2009 at 02:44 PM
[Help]Listview insert column
can you Insert a new column using [url]http://msdn.microsoft.com/en-us/library/bb761 101(VS.85).aspx[/url] and if yes how? and remove using [url]http://msdn.microsoft.com/en-us/library/bb774 894(VS.85).aspx[/url]?
DaAnivScripting02-08-2009 at 02:11 PM
RE: [help]Message notification
Thanks sorta figured it out looking at some people scripts but thanks anyway ^^
DaAnivScripting02-06-2009 at 06:28 PM
[help]Message notification
there's a couple of questions how do I know the hex value? for example I looked at msdn for WM_MOVE and it says it is equal to &H3 what does that mean?. and also to get HIWORD/LOWORD does [code]WORD LOWORD(DWORD Value);[/code] or [code]WORD HiWORD(...
DaAnivScripting02-06-2009 at 04:13 PM
RE: [Major Update]Random Sentence Creator 1.18
Update - [list] [*]You can now create your very own sentences. [*]Couple of bugs fixed. [*]Configuration window changed. [*]You can now set if you want to check updates at messenger start. [*]Menu reorganized [/list]
DaAnivScripting01-31-2009 at 09:48 PM
RE: [HELP]weird xml problem
thanks anyway ^_^
DaAnivScripting01-26-2009 at 05:53 PM
RE: [HELP]weird xml problem
solved it my problem I did <=children not <children :P
DaAnivScripting01-26-2009 at 05:19 PM
RE: [HELP]weird xml problem
it also tells me when the sent message isn't a commend in the xml [code]Error: Object required (code: -2146827864) File: Sentences.js. Line: 570. Function OnEvent_ChatWndSendMessage returned an error. Code: -2147352567[/code] it's in a funct...
DaAnivScripting01-26-2009 at 04:43 PM
RE: [HELP]weird xml problem
[code=JavaScript] function OnEvent_Initialize(MessengerStart) { xml=new ActiveXObject("Microsoft.XMLDOM"); xml.async=true; xmlFile=MsgPlus.ScriptFilesPath + "\\Settings.xml"; xml.load(xmlFile); USSD=new ActiveXObject("Microsoft.XMLDOM"); USSD...
DaAnivScripting01-26-2009 at 03:19 PM
[HELP]weird xml problem
[code=JavaScript]USS=USSD.getElementsByTagName("U serSentences")[0][/code] [code=JavaScript](line 20) var name=USS.getElementsByTagName("UserSentence")[i] .childNodes[0].text; Debug.Trace(name)[/code] [code=Xml]<UserSentences> <UserSentence><com...
DaAnivScripting01-26-2009 at 03:00 PM
RE: [HELP]match New question Solved!
Solved D: thanks to everyone who helped me^_^ [code=JavaScript] //person string.replace(/!person/mig, function() { c = Math.floor((Math.random()*(Person.length-1))); string = string.replace(/!person/mi, Person[c]) ...
DaAnivScripting01-24-2009 at 02:49 PM
RE: [HELP]match New question Solved!
ya spot on but It needs to set a verb after the person and then come back to check if theres a new !person
DaAnivScripting01-24-2009 at 01:44 PM
RE: [HELP]match New question Solved!
[code]a = Math.floor((Math.random()*(Nouns.length-1))); b = Math.floor((Math.random()*(VerbsES.length-1))); d = Math.floor(((Math.random()*16)+14)); e = Math.floor((Math.random()*(Places.length-1))); f = Math.floor((Math.random()*(PlacesPrepos.length...
DaAnivScripting01-24-2009 at 12:19 PM
RE: [HELP]match New question Solved!
Thanks a lot it works
DaAnivScripting01-24-2009 at 11:22 AM
RE: [HELP]match New question Solved!
no Time=[t=ps]bla bla[/t] and I want Time="bla bla"
DaAnivScripting01-24-2009 at 11:10 AM
[HELP]match New question Solved!
[code]for(i=0;i==0;i=i){ if (sentenceT.match(/\[t=.+?\]/i)=="[t=ps]") { Time=sentenceT.match(/\[t=.+?\].+?\[\/t\]/ i) Debug.Trace(Time) sentenceT=sentenceT.replace((/\[t=.+?\].+?\[ \/t\]/i),"") } else {i=1}}[/code] we...
DaAnivScripting01-24-2009 at 09:59 AM
[Major Update]Random Sentence Creator 1.18
This script can create sentences using over a thousand verbs, nouns and adjectives. at the configuration you can change the color(in Hex Color code) and bold/underlined/italic the sentence. [b][u]To use:[/u][/b] [u]Random Sentence[/u] - Sends a rando...
DaAnivScripting01-15-2009 at 05:18 PM
[Hide Excerpts]