- What browsers show this problem?
Firefox - Please share an example project (if possible).
~Deleted Project~
- Describes the steps to reproduce this issue.
Follow instruction in project. - What does Snap! currently do?
Change something, so Snap! don't work anymore. - What should Snap! do instead?
Work as intended.
I don't understand what "the instruction" is.
Okay. You have everything grey. You remove grey squares by starting the script and click with the black square somewhere. If you then try to save it, export it, change the language or maybe some else too, it won't work.
"setze Feld" with empty input inserts null to "Speicher" list ( 0 works better ;-).
Such list cause error during export in Snap
lists.js
List.prototype.asCSV
function encodeCell(atomicValue) {
var string = atomicValue.toString()
Modified version works as expected
var string = atomicValue? atomicValue.toString(): ""
Thanks for the report, this is clearly a bug. Will fix!
Thanks a lot, @dardoro!