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;