TypeError: window.onerror is not a function problem

I started with this:

*title My First ChoiceScript Game
*create first_name “”
What is your name? *input_text first_name

and immediately get a “TypeError: window.onerror is not a function” error. Am I missing something? Thanks!

Make sure you have *input_text first_name on a separate line.

2 Likes

Sorry about that, it’s a typo when I posted. But the code is separated and it’s still not working.

*title My First ChoiceScript Game
*create first_name “”
What is your name?
*input_text first_name

I’m trying it using both Firefox and Chrome, but both aren’t working.

Perhaps if you try putting something within the quotations?

ex.

*title My First ChoiceScript Game
*create first_name “Unknown”
What is your name?
*input_text first_name

Just to make sure, you do have a *scene_list defined right?

Yup, it’s defined!

And it seems like putting the quotations work, although I need to test things out and see what went wrong still. Thanks for the help!