For those of us who want to display time in 24 hour format, it would be helpful to be able to set a label to #CURRENTTIME and get the following literal, "HH:MM", including the colon. Trying to achieve this with #CURRENTHOUR and #CURRENTMINUTE, because they are numbers, ends up for example with 18:5 instead of 18:05, unless one gets into custom actions against a number (0 to 9 : concatenate a leading 0, 10 to 59: display as is).DemoPad wrote:[... We will put the ability to set a label equal to any of the time parameters in the next version of the app, but the purpose of implementing it with numbers was not to display it on screen (the time is already on the top status bar anyway). The purpose was to give you access to the time/date components so that you can fire custom number actions to set flags (eg a 'daytime' flag, or a 'winter' flag, or a 'weekend' flag), to allow you to, for example, only dim the lights after pressing a 'turn cinema on' button when it is nighttime, or only perform other actions in summer, etc etc. It just so happens that you can also display the values on screen if you want by using a label, but this is a side effect.
Side question: in the next release, how will you handle the setting of a label to a time parameter when that parameter can be 1 or 2 digits? My personal preference would be a 2 digit label.