Can't find the clock function

where can I find such functions? Clock - Classic Docs

1 Like

Welcome to Thunkable.

In Thnkable X you can get the time particulars in the Device drawer in the Blocks screen

However, if you are asking about the functionality of the clock in the Classic version then you need to use the Timer component in the component list in the StP (old version)
image

Or the App Features list in DnD (new version)
image

1 Like

timer does not have a duration calculation function?

1 Like

No it does not.

To calculate a duration,

You could
start an action and save the seconds since 1970 to a variable

then when the action to time is complete, do the following computation

(seconds since 1970 - previously saved seconds since 1970)/60

^^^will output the duration in minutes.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.