Hi!
I'm currently working on a game using Construct and I would like to figure out how to change the window title depending on the level being played, like in Pizza Tower.
Develop games in your browser. Powerful, performant & highly capable.
In NWjs export you can change window title with NW.js object.
In a web game this may be possible with scripting.
document.title = "This is the new page title.";
Thank you!