Accept external options at startup

My application (in this case compiled in HTML5) must accept external options at startup, is there a native management of this eventuality?
Otherwise do I have to capture them via PHP and pass them via cookies?

For example in PHP I can insert in the link of references

index.php?option=true&fullscreen=false

.
Or in compiled games you use `

game.exe /fullscreen /option

`

1 Like

For a compiled game, not without JavaScript.
To read the query string, you can use the URL Tools extension: there is an expression to get the current URL and another to extract a specific query string parameter.

2 Likes