HOME | DD

RefridgingFire — Clock

Published: 2008-03-19 07:39:11 +0000 UTC; Views: 147; Favourites: 0; Downloads: 18
Redirect to original
Description Changed this clock a little, it's analogue now, and the date is added

It has changed a lot, and I'm quite happy with the results (though I admit the looks could've been better...)
Related content
Comments: 6

Pixie-Wildflower [2008-03-20 14:10:11 +0000 UTC]

COOL!

👍: 0 ⏩: 1

RefridgingFire In reply to Pixie-Wildflower [2008-03-21 12:15:50 +0000 UTC]

TYVM

👍: 0 ⏩: 0

ParanoidRabbit [2008-03-20 07:12:56 +0000 UTC]

simply because it doesn't have a two figure number. a computer is lazy, it won't write it out unless you tell it to. the only thing I can think of is to check if the number is less than 10 and add a "0" in front.

👍: 0 ⏩: 1

RefridgingFire In reply to ParanoidRabbit [2008-03-21 12:15:25 +0000 UTC]

But can I make the 0 dissapear again if it becomes higher than 09?

👍: 0 ⏩: 1

ParanoidRabbit In reply to RefridgingFire [2008-03-23 12:12:22 +0000 UTC]

check if the counter is lower than 10. that is:
if (time < 10)
{
show ("0" + time);
}
something like that

👍: 0 ⏩: 1

RefridgingFire In reply to ParanoidRabbit [2008-03-26 13:22:55 +0000 UTC]

Okay, I'll try it
Thanks Alex

👍: 0 ⏩: 0