1. Is Construct 2 capable of converting the string into uppercase or downcase? If yes, how? I've been looking in Construct 2 and can't find them.
2. Will there be conditional operator support for the strings? I can't get them to work for the text object or text variable. Example:
A>B ? "Yes" : "No"
Develop games in your browser. Powerful, performant & highly capable.
1. I'll add this for the next build.
2. Oops, looks like a bug. However, it seems to work if you put the condition in brackets, e.g.:
(A > B) ? "Yes" : "No"
I'll see if that can be fixed too.