Page 1 of 1

Making a Real Time Clock with seconds

PostPosted: Thu Apr 09, 2009 3:36 pm
by MrJolteon
Hello. You want script for a real time clock with seconds that WORKS?
Add an actor that shows the hours, called hour or hours.
Give it a text: "00".
Add an actor that shows the minutes, called minute or minutes.
Give it the same text as hours
Add an actor that shows the seconds, called second or seconds.
Give it the "00" text.
Add an actor named whatever you want with the text ": :"
Add this event:
Draw actor>Script Editor>This code:
Code: Select all
stTime t = getTime();

hours.textNumber   = t.hour;
minutes.textNumber = t.min;
seconds.textNumber = t.sec;

Re: Making a Real Time Clock with seconds

PostPosted: Fri Apr 17, 2009 5:26 pm
by Kalladdolf
Visual demonstration of an analog clock.
clock.zip
There.
(6.04 KiB) Downloaded 265 times

Though there seems to be a problem with the hour index. Solutions, anyone?

Re: Making a Real Time Clock with seconds

PostPosted: Sat Apr 18, 2009 9:00 pm
by jimmynewguy
never knew those funtions existed lol

Re: Making a Real Time Clock with seconds

PostPosted: Wed May 06, 2009 2:34 pm
by MrJolteon
That clock reminds me of my DS clock... lol...
There should be a way to change the colors of the clock.

Re: Making a Real Time Clock with seconds

PostPosted: Wed Sep 02, 2009 7:37 pm
by DocRabbit
For anyone that comes across this and wonders about hour hand, here is the fix for it.

here is the updated code to place in the hour->draw actor script.
Code: Select all
stTime t = getTime();
if (t.hour>12)
{
 
i = ((t.hour-12) * 30)-90;
}
if (t.hour<13)
{
    i=(t.hour*30)-90;
}
xr = cos(degtorad(i))*d;
yr = sin(degtorad(i))*d;
x = 0 + xr;
y = 0 + yr;


I also did a new background and created a small graphic to better align the hands.
On view_>create actor script, I set background.x and background.y both to 0 to position it dead center.

Re: Making a Real Time Clock with seconds

PostPosted: Wed Apr 28, 2010 6:33 am
by MrJolteon
You're welcome :D

Re: Making a Real Time Clock with seconds

PostPosted: Wed Apr 28, 2010 1:02 pm
by Hblade
Hey awesome, jolt :D I'ma make an On Screen Multi Funtional clock now good jolt it's nice :D