
goldenbot
The Synthiam
code object is interpreting square brackets [ i ] with an i inside as something else if you don't have any spaces.
If you include the spaces then it seems to work.
It seems to be the website input in general and not just the code object. But when in a code object it should not change the code if
For example if I have
if (frameTransition[ i ] [0] == fromFrame && framTransition[ i ] [1] == toFrame) {
in the code like this without spaces around the i
When it displays after publishing it seems to drop the [ i ] if you don't have spaces eg: [i]Code:
[code]if (frameTransition[i][0] == fromFrame && frameTransition[i][1] == toFrame) {
Do you know why?
Here is one without spaces [i] and you probably don’t see the [ i ] after the word spaces.
Hope that helps. I am not sure why that happens. I was saying in the [code] object in the web editor it should not modify the input if the [ i ] represents a special symbol or something else.
Alan