mIRC Home    About    Download    Register    News    Help

Print Thread
#55352 16/10/03 06:09 PM
D
DeadlySin
DeadlySin
D
Is there a way i can change mirc titlebar with a script so i dont get what is on it now iv got version 6.03 confused

Thx

#55353 16/10/03 06:12 PM
G
Gawain
Gawain
G
Sure, just use the /titlebar command.

#55354 16/10/03 06:16 PM
D
DeadlySin
DeadlySin
D
i dont mean that sort i know about that but i still get stuff on it like what channel im on and its topic i dont wnt that so thx but thats not what i mean

#55355 16/10/03 06:22 PM
G
Gawain
Gawain
G
So you're using some sort of script now then, not a clean mIRC, in which case I have no idea how to help you.

#55356 16/10/03 06:25 PM
D
DeadlySin
DeadlySin
D
Im using mIRC 6.03 and im doing my on script i just need that

#55357 16/10/03 06:26 PM
P
pheonix
pheonix
P
no.., mirc has certain stuff it keeps in the titlebar even after using the /titlebar command..

//echo -a $titlebar = tidy_trax
but whats actually the titlebar = mIRC tidy_trax - [#somechannel [8] [+nt] topic... ]
after using //titlebar $anick = mIRC phoenix - [#somechannel [8] [+nt] topic... ]

#55358 16/10/03 06:42 PM
D
DeadlySin
DeadlySin
D
when i want sumthing in it

EX. Deadly-Sin it says that and the [#somechannel [15] [+nt] topic... ]<<<< i want to get rid off. but how coz on other scripts its not there

#55359 16/10/03 07:44 PM
P
pheonix
pheonix
P
that uses a dll i think, not sure which :tongue:

#55360 17/10/03 03:19 AM
Joined: Dec 2002
Posts: 1,893
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,893
The titlebar of mIRC is made out of 2 parts: the word mIRC, and your /titlebar text. When your windows (channel, query, status) are maximized, their title is added to your mIRC's title inside [] brackets.

The current /titlebar command only lets you change the piece of text that is between 'mIRC' and the brackets, so you can't use it for completely controlling the line.

sz.dll contains the SetTitle function that lets you reset the titles of both mIRC and other windows.

When you are in a #channel, try this command to delete the brackets part -
  • //echo -a $dll(sz.dll,SetTitle,$active)
Then, use this command to change mIRC's titlebar:
  • //echo -a $dll(sz.dll,SetTitle,mirc > hello!)
If everything worked as it did to me, the only text in your titlebar will now be "hello!".

See the readme file for more information, and make sure the dll is placed in your mIRC's folder before using the commands above. good luck smile


Link Copied to Clipboard