It’s another simple problem that has me stumped.
x = 1;
y = 2;
z = 3;
trace(x+y+z);
how do I get this to display “123” instead of “6”?
I’ve tried both eval and concat() and have failed to get either to work, not that they don’t work, I’m sure it’s just me.