Hi, This is my first post in the forums.
I am attempting to concatenate a number to a string for the purpose of saving a timestamp to an image name like so:
ChartName << save picture ("file_name" || "date" || ".png", png);
However, JSL will not allow the date information to be concatenated because it is an integer and not a string.
I gather datetime information using
yyyy = year(today());
hh = hour(today());
and so on which returns integer data types.
Is there a way to convert the integer datetime information to strings so that they can be concatenated with the string for the file name? I did not see any information in the scripting guide on data type conversions.
Thanks.