Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
Is it somehow possible to call a construct function from the browser debug console? Does anybody know how this can be done?
I've tried to search for it, but haven't found any results.
Develop games in your browser. Powerful, performant & highly capable.
Specifically from the browser console - and not using the scripting feature - you can use the global c3_callFunction method as documented in the functions section of the manual. However if you write JavaScript code in Construct, you should use runtime.callFunction instead.
c3_callFunction
runtime.callFunction
Perfect, that was exactly what I was looking for. Thank you!