This has been added to the list as a potential future update, but has not been assigned a start date at this time.
<br>
<br>If and when this step is developed, an update will be posted here.
<br>
<br>Some of what you are looking for is currently possible in other ways, as follows:
<br>
<br>1a) Since the @TIME TeleFlow system variable supplies the current time in 24-hour format, you can chop the first 2 numbers from it into a separate string. Then, with a little more chopping, check if the first character is a 0. If it is, it is in the AM. Otherwise, check if the 2 characters (Eg. 13 for 1 PM) are > 12, if so, deduct 12 from it, and reconstruct your string with PM on the end.
<br>
<br>b) @TIME returns what you are looking for on this one, I believe.
<br>
<br>c) @CALL_START has the seconds since midnight as of when the last phone call starts. If you add @CALL_ELAPSE (the number of seconds since the call started) to this you get the seconds since midnight at the current time. This, unfortunately, only works during a phone call.
<br>
<br>d) Do you mean total seconds since midnight?
|