Quizexample (custom behaviours)

a small quizexample from last christmas which shows visual results with the use of custom behaviours in a symbol download hypefile

1 Like

OMG! that is so cool.

Nice one mate. Not even going to ask how long that took you to put together…

And it has got me thinking about localisation for text… Setting with a button is probably easy , but I wonder if you can detect language from the browser…?

Found this snippet on StackOverflow which does return an indication of language set (Mac at least)

var language = window.navigator.userLanguage || window.navigator.language;
alert(language);

I tested it with my language set to English and German.

It returned the correct one each time.

1 Like