mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2005
Posts: 6
I
ijk Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
I
Joined: May 2005
Posts: 6
i made a new icon for the system tray, and it works except the flashing part....

what exactly do i have to do to make that part of it work?

Joined: Jul 2004
Posts: 59
L
Babel fish
Offline
Babel fish
L
Joined: Jul 2004
Posts: 59
To get mine to work I didn't do anything fancy just did the below.

mIRC Options
Display
Tray

changed the ICON path and palced checks in apropriate boxes

Place icon in tray when minimized and anamate icon when there is activity.

Hope this helps.

Mine works and thats all I did.

Joined: May 2005
Posts: 6
I
ijk Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
I
Joined: May 2005
Posts: 6
well, was that a default ico? i have made a custom icon for my irc client.

im sure there is more to it then just pointing to a icon file that is just that.

Joined: Jul 2004
Posts: 59
L
Babel fish
Offline
Babel fish
L
Joined: Jul 2004
Posts: 59
Nope its a custom Icon

Joined: May 2005
Posts: 4
K
Self-satisified door
Offline
Self-satisified door
K
Joined: May 2005
Posts: 4
I think what he is getting at and I have wondered myself is, does mirc animate the icon by manipulating it or does the icon have some info inside the .ico file that tells mirc to use animated images.
I could be wrong about what ijk meant, but at least I might get an answer for my own curiosity wink


·Kanj¹za¹·
Joined: May 2005
Posts: 6
I
ijk Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
I
Joined: May 2005
Posts: 6
thats exactly what i mean. i have used several programs to look at icons inside the exe and the ico file in the original mirc.exe and i see none that look like the animated one (green r lights up i beleive)

i have set the new client for animated on activity, but nothing happens, so my guess there is some kind of hidden icon somewhere, i unno :-/

Joined: Sep 2003
Posts: 4,230
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Sep 2003
Posts: 4,230
It might just be color cycling, like the windows splash screen (at least the 98 one) That was just a bitmap with a cycle colors flag set. Maybe icons have the same thing? (i dont know)

Joined: Jan 2005
Posts: 193
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 193
it's bitmap...
Bitmap 30 : 2057



how to replace... dont have no idea either....


echo -a $signature
Joined: May 2005
Posts: 6
I
ijk Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
I
Joined: May 2005
Posts: 6
interesting, now if only i could find out how to do such a thing? anybody?

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
You could try programs like Jasc Paint Shop Pro (ones that have gif animation creating modules). Should work for ICO files, I would imaging... though, I've never bothered with making an animated ICO.


Invision Support
#Invision on irc.irchighway.net
Joined: Jan 2005
Posts: 193
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 193
Just looked this thread again and started to think again....

One way would be if you play with $appstate and /tray -i iconfile

So it could be something like this maybe....

Code:
ON *:TEXT:*:#: {
if ($appstate == tray) {
tray -i trayico_chantext.ico
}
}

on *:TEXT:*:?: {
if ($appstate == tray) {
tray -i2 trayicons.ico
}
}

on 1:DISCONNECT: {
if ($appstate == tray) {
tray -i5 trayicons.dll
}
}



and so on...

If you are bored enough you could make a LONG script and use custom tray icon for every single event... grin


echo -a $signature

Link Copied to Clipboard