Toolbar Clock

Platform:  mIRC
Published  Dec 27, 2011
Updated  Dec 27, 2011

Screenshots

Simple script which puts your timestamp in your toolbar.
Commands are /startclock and /stopclock

Screenshot is of my own personal timestamp being used.

EDIT: uses your background color, so you shouldn't have any issues seeing it. on *:LOAD:{
set %clock.on.start $input(Would you like the clock to start at startup?,yw,Toolbar Clock)
}
on *:START:{
if (%clock.on.start) { startclock }
}
alias startclock {
window -pBw0hf +d @clock -1 -1 $calc($width($timestamp,consolas,12,0,1) + 2) 18
drawrect -nf @clock $color(background) 1 0 0 $calc($width($timestamp,consolas,12,0,1) + 2) 18
drawtext -p @clock 0 consolas 12 1 1 $timestamp
if (!$toolbar(clock)) { toolbar -au clock "Clock" @clock }
.timerclock 0 1 clock.cont
}
alias clock.cont {
window -pBw0hf +d @clock -1 -1 $calc($width($timestamp,consolas,12,0,1) + 2) 18
drawrect -nf @clock $color(background) 1 0 0 $calc($width($timestamp,consolas,12,0,1) + 2) 18
drawtext -p @clock 0 consolas 12 1 1 $timestamp
toolbar -up clock @clock
}
alias stopclock {
.timerclock off
toolbar -d clock
close -@ @clock
}

Comments

Sign in to comment.
Scakk   -  Dec 28, 2011
All I am getting is a white rectangle. I am using version 6.35.


By the way I use background color of white.

I changed "consolas" to "Fixedsys" and the "$color(background)" to "$color(notice)" and it shows on mine now.

Code

 


The above is my version of it. The time changes colors every second. There is a popup that tells you the day when you hover your mouse over it.
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.