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

Search Results
Subject Author Forum Time
Update system failure
Could be just me, but the update system hasn't worked for weeks: I do get update notifications, but MPL won't download anything. All I get is a general message box, stating that "An error has occurred while downloading an update." I'm running: W...
SmokingCookieWLM Plus! Help03-13-2010 at 01:48 PM
RE: [?] Checked menu items
All right, thanks for the answers :)
SmokingCookieScripting03-06-2010 at 10:23 AM
[?] Checked menu items
Could be that this is not the right place, and this thread should be in the "Suggestions" section. But here I go anyways. Is it possible to check menu items, in the screenshot? [img]http://shoutbox.menthix.net/attachment.php?pi d=989687[/img] Possib...
SmokingCookieScripting03-06-2010 at 09:58 AM
RE: [?] PlusWnd::BaseColor write-only
Thanks ;)
SmokingCookieScripting03-04-2010 at 06:23 PM
RE: [?] PlusWnd::BaseColor write-only
Works as of now, thanks (Y) Edit: but what if the user changes their colour..? I cannot seem to detect changes, and the colours of script windows do not change.
SmokingCookieScripting02-25-2010 at 05:47 PM
RE: [?] PlusWnd::BaseColor write-only
Any kind of Win32 workaround?
SmokingCookieScripting02-25-2010 at 05:22 PM
RE: [?] PlusWnd::BaseColor write-only
Well, just doing some random stuff with it, but I'd like to be able to [i]get[/i] the BaseColor thingy.
SmokingCookieScripting02-25-2010 at 05:10 PM
[?] PlusWnd::BaseColor write-only
I've tried to read the BaseColor property from a PlusWnd object and received an error. Why can't this value be read? And is there another way of getting it anyway? Oh and btw, documentation on this property is hard to find, as there's no entry for...
SmokingCookieScripting02-25-2010 at 04:15 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Complicated indeed, but if you get this done, you'll get at least an enormous ego-boost :P About the control/element ID or name thingy, you'll have to loop through the existing items. For the window IDs, you'll have to prompt immediately [i]if[/i]...
SmokingCookieScripting02-24-2010 at 07:30 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
There goes a brand new suggestion: making an "in-script" clipboard-like variable or object (array?) to copy and paste windows/controls etc. (I)
SmokingCookieScripting02-24-2010 at 07:20 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Well, I usually call them groups. Little offtopic, but ehh; do you write your own interfaces using this script? :P
SmokingCookieScripting02-24-2010 at 06:57 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
You've got it :P
SmokingCookieScripting02-23-2010 at 05:02 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
I have [s]a[/s] two suggestions: [list] [*]You might want to make the settings window a bit larger, to improve user-friendliness. [*]I see the benefit of the Help guide mode, but I think it looks a lot more professional to make a little help button i...
SmokingCookieScripting02-23-2010 at 10:58 AM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Stupid :wall: :P
SmokingCookieScripting02-14-2010 at 08:09 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
You're welcome :) Oh, and in what windows will you be implementing this?
SmokingCookieScripting02-14-2010 at 02:04 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Yeah, that makes a whole lot of difference :P The menu thingy is gonna be very complex. If you want an example, look at my code again. Search for "OnWndSettings_LanguageEvent_LstViewRClicked" in the same file you found the message notification even...
SmokingCookieScripting02-14-2010 at 01:44 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Could you post the entire On[i]WindowId[/i]Event_MessageNotification(...); function?
SmokingCookieScripting02-14-2010 at 12:53 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
(see http://msdn.microsoft.com/en-us/library/ms632628%2 8VS.85%29.aspx) It [i]should[/i] return the visible length (that is, text you can read)... *-) But you more or less have it working now: Buffer.readSTRING(0); should return the new filename/cont...
SmokingCookieScripting02-14-2010 at 11:01 AM
RE: Interface Writer | [release] 3.0 | 22/08/2010
That's weird.. Could you try: [code=JScript] var length = (Interop.Call("User32.dll","SendMessageW",Edit ,WM_GETTEXTLENGTH,0,0) + 1); var Buffer = Interop.Allocate((length + 1) * 2); var lResult = Interop.Call("User32.dll","SendMessageW",Edit. ..
SmokingCookieScripting02-13-2010 at 08:49 AM
RE: Scripting API Wishlist
(Better) support for tabbed chats..?
SmokingCookieScripting02-12-2010 at 05:58 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
You shouldn't use NMHDR.readSTRING(8), but NMHDR.readDWORD(8) Besides, you can always check the value read from a position in a DataBloc object: [code=JScript]var Byte1 = DataBloc.readDWORD(0); var Bute2 = DataBloc.readSTRING(0); Debug.Trace(Byte1);...
SmokingCookieScripting02-12-2010 at 08:34 AM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Kinda forgot that you'd replied, I'm sorry! When you receive the WM_NOTIFY message, the lParam is important: it contains an [url=http://msdn.microsoft.com/en-us/library/bb775 514%28VS.85%29.aspx]NMHDR structure[/url]. You can access this structure u...
SmokingCookieScripting02-10-2010 at 07:32 PM
RE: [?] Detect x64 through JScript & EM_SETSEL on x64
Yes, the 16/8 thingy was indeed the problem. But it's pretty much solved now; thanks anyway.
SmokingCookieScripting02-03-2010 at 05:14 PM
RE: [?] Detect x64 through JScript & EM_SETSEL on x64
Well, I've double-checked the EM_SETSEL, it is properly defined. I've just tried EM_GETSEL, starting and ending positions are both 0. And thanks for adding a new word to my vocab :P [s]Seen your bump, reading now Seen :p[/s] I've been messing arou...
SmokingCookieScripting02-02-2010 at 08:53 PM
RE: [?] Detect x64 through JScript & EM_SETSEL on x64
Well, I've put a longer string in the edit box and tried indexes 4 and 12 (and reversed), but it still doesn't work: no text is selected. The edit control is basically a combo box with the [i]AllowEdit[/i] attribute set to true. Btw, what does "ra...
SmokingCookieScripting02-02-2010 at 08:40 PM
[Hide Excerpts] Pages: (33): « First « 2 3 4 5 [ 6 ] 7 8 9 10 » Last »