Next Page and not Scrolling Down?
SigSang4
29 Feb 2016, 01:25So, my question is:
How can I make a game where when the player chooses an option I give them, it goes to a next page and not scrolls down to show the text of the chosen option?
I ask this because I tend to write a lot, so everytime the player chooses something it scrolls to the bottom of the text of choice, which is annoying after 3 minutes of playing...
Also, how can I bold, italic and underline words? And everytime I put a dash "-" for dialogue, the code translates into a bulletpoint. How can I make proper dialogues, like:
- Hello! How are you?
- I am fine, thanks!
Thank you guys!
How can I make a game where when the player chooses an option I give them, it goes to a next page and not scrolls down to show the text of the chosen option?
I ask this because I tend to write a lot, so everytime the player chooses something it scrolls to the bottom of the text of choice, which is annoying after 3 minutes of playing...
Also, how can I bold, italic and underline words? And everytime I put a dash "-" for dialogue, the code translates into a bulletpoint. How can I make proper dialogues, like:
- Hello! How are you?
- I am fine, thanks!
Thank you guys!
bgbg
29 Feb 2016, 02:04To clear the page before printing the text in a section, include
in the section.
To automatically clear the page in every section, you can use a master section. Read more about those here.
So you might end up with something like this:
To format the text, you can use Markdown (see this guide) and HTML.
@clear
in the section.
To automatically clear the page in every section, you can use a master section. Read more about those here.
[[]]:
@clear
So you might end up with something like this:
[[Page1]]:
This is the first page.
[[Option 1]]
[[Option 2]]
[[Option 1]]:
This is the page for Option 1.
[[Option 2]]:
This is the page for Option 2.
[[]]:
@clear
To format the text, you can use Markdown (see this guide) and HTML.