Very straightforward FlexScript syntax issue I'm having:
I have two variables that represent the current day and month of the year. I want to combine them into one variable.
Example:
---------------------------------------------------------------------
int day = getmodelunit(CURRENT_DAY_OF_MONTH);
int month = getmodelunit(CURRENT_MONTH_OF_YEAR);
int today = month&day;
--------------------------------------------------------------------
I want the "today" variable to read as "712" (based on today's date of July 12th). Bonus points if you can tell me how to add a slash so it reads as "7/12".
Thanks!