I made a short thing using the IDE and don’t have the code. I have an exported HTML of the game. Is there any way to go backwards to see the code again?
CJW
November 18, 2015, 12:24am
2
Yes, you can use the method outlined here:
If it’s compiled as that game is, the best you can do to get the lines is to load the page, open your web browser’s console and type in: allScenes[“startup”].lines.join("\n");
Then hit enter.
This will output all the lines of that scene into the console, which you can then copy out into a text editor.
Of course you can replace “startup” with the name of any desired scene.
Your browser’s console is usually accessed via the F12 key.
Thank you! I will give that a try.