0 votes
by (190 points)
Hey guys, for my twine story I want to use an image as a button to move to the next passage of the story, I can manage to do this, but I'm having trouble moving the button around on the screen. Are there any easy ways to change to position of the image button?

This image explains better what I'm trying to achieve:

https://imgur.com/a/Vr2lP8U

1 Answer

+1 vote
by (6.2k points)
selected by
 
Best answer

Do you mean you don't know how to move the button when the story is being played from the editor?

To move it down, just use <br> to make a line break.

You can also use <pre> to maintain whitespace if you want the button, say, in the middle of the passage.

<br>
<br>
<br>
<pre>       Button</pre>

 

by (190 points)
Brilliant! Helped me out a ton, thanks :)
by (6.2k points)
no problem :D
...