Uncaught TypeError: Cannot read propert 'current_event' of undefined http://localhost:50000/preview.js, line 4778 (col 50)
I was having a variable that when it hits that variable it goes to a different layout then goes to the layout then set the variable to 0 to stop looping....
You can use this to open the capx if you need to recover any graphics or if you want to try repairing it.
http://www.7-zip.org/
Maybe need to file a bug report.
You probably assigned a string to a number variable, like: current_event = "JabiJabiJabi"
Despite JavaScript's 'promise' of being type safe/flexible, it is neither.
Develop games in your browser. Powerful, performant & highly capable.
You probably assigned a string to a number variable, like: current_event = "JabiJabiJabi" Despite JavaScript's 'promise' of being type safe/flexible, it is neither.
JavaScript is. The Construct 2 engine, not so much.
Well, typesafe perhaps, but it likes to pretend that it is type flexible too, which it is most certainly not.
var = string, int, etc.
but God forbid if you put a string into an int var. Then you get errors like the above.