Hi Everyone, I Need Help in customizing Construct-2 Exported Code.
I made a game for client, He wants to call a function in Index.html to give alert of total-points when user clicks a Specific Button ("Done Button" in Game)
Here is Game Link ....
dl.dropboxusercontent.com/u/196969557/Betty_Bellows%20V2.5/index.html
Right Now When you click on Done, it calls browser alert message.
But My Client wants to Implement this in Index.html.
I Need help how I can call this function in Index.html when user clicks on done button, & Access ("TotalPoints" Global Variable in C2Project)
/**** (I Have less Knowledge about Coding)
index.html
<script>
function update_points(points)
{
alert(points);
}
</script> ***/