Interpreter errors

When a sequence is being exported, Sequence Composer tests whether the sequence is valid to send to the Morsel device. A green checkmark will appear with the names of the files if there weren't any errors on the Export Tool. An error message will appear and report in the status bar if something went wrong.

The possible error messages include:

Message What to do
Unknown statement at line x, column y.
(bold text will be different)
A keyword was used but not in a context the interpreter understands. For example:
  @ 0s chn = fade from 0 to 100 for 1s
is correct, but:
  @ 0s fade from 0 to 100 for 1s
is missing the "chn =" part.
Expected 'something' at line x, column y.
(bold text will be different)
A keyword, value, or symbol was expected but did not appear in the phrase.
Expected 'something' at the end.
(bold text will be different)
A keyword, value, or symbol was expected at the end but did not appear in the phrase.
Label 'name' defined twice.
(bold text will be different)
A label was defined twice. Rename one of the labels, and update any references intended for the changed label.
Label 'name' not found.
(bold text will be different)
A label was not found when referenced in a go statement. Check the spelling of the label names.