What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [?] API Function for changing window taskbar title.

Pages: (2): « First [ 1 ] 2 » Last »
[?] API Function for changing window taskbar title.
Author: Message:
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
O.P. [?] API Function for changing window taskbar title.
do any of you programmers have the api function to change a window's taskbar title? :P
[quote]
Ultimatess6
: What a noob mod
09-06-2007 09:47 PM
Profile PM Web Find Quote Report
deAd
Scripting Contest Winner
*****

Avatar

Posts: 1060
Reputation: 28
– / Male / Flag
Joined: Jan 2006
RE: [?] API Function for changing window taskbar title.
SetWindowText
09-06-2007 10:39 PM
Profile PM Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
O.P. RE: [?] API Function for changing window taskbar title.
quote:
Originally posted by deAd
SetWindowText
(Y), but it adds a titlebar into my window.. which i don't want :p
[quote]
Ultimatess6
: What a noob mod
09-06-2007 11:16 PM
Profile PM Web Find Quote Report
Stigmata
Veteran Member
*****



Posts: 3520
Reputation: 45
20 / Other / Flag
Joined: Jul 2003
RE: [?] API Function for changing window taskbar title.
setwindowtext

sendmessage to window to remove titlebar.
09-06-2007 11:24 PM
Profile PM Web Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
O.P. RE: [?] API Function for changing window taskbar title.
quote:
Originally posted by Stigmata
sendmessage to window to remove titlebar.
i couldn't seem to find the message to send to the window :p mind telling me what the message name/value is?
[quote]
Ultimatess6
: What a noob mod
09-07-2007 01:08 AM
Profile PM Web Find Quote Report
NanaFreak
Scripting Contest Winner
*****


Posts: 1476
Reputation: 53
32 / Male / Flag
Joined: Jul 2006
RE: [?] API Function for changing window taskbar title.
quote:
The SetWindowText function changes the text of the specified window's title bar (if it has one)

it shouldnt add a titlebar =\
09-07-2007 05:43 AM
Profile PM Find Quote Report
felipEx
Scripting Contest Winner
***


Posts: 378
Reputation: 24
35 / Male / Flag
Joined: Jun 2006
RE: [?] API Function for changing window taskbar title.
something like this ?
code:
function OnEvent_ChatWndCreated(ChatWnd){
var Wstyle = 0 /* WS_OVERLAPPED */ | 0x2000000 /* WS_CLIPCHILDREN */ | 0x4000000 /* WS_CLIPSIBLINGS */  ;
Wstyle = Wstyle | 0x40000;
Interop.Call("user32", "SetMenu", ChatWnd.Handle, 0);
//Interop.Call("user32", "SetWindowTextW", ChatWnd.Handle, "new title...");
Interop.Call("user32", "SetWindowLongW", ChatWnd.Handle, -16 /* GWL_STYLE */, Wstyle);
Interop.Call("user32", "ShowWindow", ChatWnd.Handle, 1);
}

This post was edited on 09-07-2007 at 06:57 AM by felipEx.
09-07-2007 06:14 AM
Profile E-Mail PM Find Quote Report
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
RE: [?] API Function for changing window taskbar title.
quote:
Originally posted by NanaFreak
it shouldnt add a titlebar =\
It will add one if there isn't one already...
09-07-2007 03:01 PM
Profile E-Mail PM Web Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
O.P. RE: [?] API Function for changing window taskbar title.
my window doesn't have the <Title> tag in the XML. but when i use the api, it will show the title
[quote]
Ultimatess6
: What a noob mod
09-07-2007 08:31 PM
Profile PM Web Find Quote Report
deAd
Scripting Contest Winner
*****

Avatar

Posts: 1060
Reputation: 28
– / Male / Flag
Joined: Jan 2006
RE: [?] API Function for changing window taskbar title.
That's a Plus! problem, not something that can be fixed using the windows api.
09-07-2007 08:34 PM
Profile PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On