This is a simple Digital Clock using well known LED numbers.
Download here
can you make a QVGA version please??
or... share the png files... so i can make it..
here you have an automatic process.. http://emerym.homeip.net/rlToday/upload.cgi
Very cool.
works great on my Diamond!!
thanks!
I am new to this! I have copied the folder into the appletribbon folder on my phone and I can add it however I have no icon and it doesnt show in the applet launch ribbon.
The first one !!!
Thanks so much ;)
I really love the simplicity of adding new applet's to the ribbon! Thanx a lot for this usefull app!
:D
HTC Home is back... :(
@ MarcLandis: Thanks!
I think you can do it with a Pointui style ;)
You could also use Device.IsVGA() to package it in an unique .cs file.
Can someone please tell me how to install the new applet???
Can someone please tell me how to install the new applet???
Just copy the BigClock folder to your Program Files\Home 2\AppletRibbon\ folder
Then select the appletribbon on your device, and add the BigClock applet
Make sure you download the correct version. Didn't work for me at first. Make sure all files are in the Bigclock folder in the AppletRibbon folder. I had them all inside a Bigclock folder that was in a Bigclock folder that was in the Appletribbon folder and it didn't work that way either.
Thanks - I had made the folder in a folder error too!
thanks for the QVGA version ;) Like it a lot!
Hi. how do i install this applet? in which folder do i copy them?
Thanks!
1. Unzip the folder on your desktop
2. Copy the folder "BigClock" and all its contents into Program Files\Home2\AppletRibbon
3. Select "Big Clock" from the applet selection menu
Works well and looks great on the theme I'm working on =] Thank you for sharing
Looking great, thanks!
Veeerryyyyyy cooooool!! The first one and it looks very cool, specially with a dark background!! Keep on working on more Applets!!!
Really good first applet, MarcLandis.
Many thanks !
way to go MarcLandis. Awesome job on the applet. :thumbsup:
ok thanks! got it workin on my htc!
Works like a charm: thank you!
Any idea why I can't update the first post anymore?
btw, wonder if can do the HTC TouchFlo style, i.e. the minutes/seconds flips down.
btw, wonder if can do the HTC TouchFlo style, i.e. the minutes/seconds flips down.
Not at the moment, as it would require to load a lot of images to create the effect.
love the clock, but the small icon in the home screen ribbon is a little big and isn't transparent like the others so it stands out .. what dimensions are the small icons supposed to be so i can make one?
what dimensions are the small icons supposed to be so i can make one?
the small one is 16x16
the medium is 32x32
the large is 48x48
Thanks!
As it seems not possible to edit the first post after some time here is a new version combining both VGA & QVGA
Great Work. Looks really really good on my omnia :D
how do you get if off military time?
looking at the BigClock.cs and the script documentation.. i think if you open BigClock.cs in notepad and replace:
s = dt.ToString("hhmm");
with:
int currentHours = dt.ToString("hh");
if(currentHours > 12)
{
//not sure about how it can handle casts and concatenations in a single statement, so seperated.
currentHours -= 12;
s = currentHours;
s += dt.ToString("mm");
}
else
{
s = dt.ToString("hhmm");
}
save it, and then load that file back to
/Program Files/Home2/AppletRibbon/BigClock
it should provide 12 hour format, but it wont tell you AM or PM (would you need to be told that?) I have not tested this code because I dont have my usb cable here at work.
You must log in to post.