Code: Select all
define narrator = nvl_narrator
define a = Character(kind=nvl)
define b = Character ("b")
label start:
window show
a "Test line nvl one"
a "Test line nvl two"
b "Test line adv one" (multiple=2)
" " #a line of no text that shows in the nvl textbox at the same time as the line above in the adv textbox
a "Test line nvl three" #the adv textbox vanishes and the nvl textbox stayed the whole time, but this line is now below the " " line and
#not directly below the "Test line nvl two"
return
The closest I have found that looks like it might be a solution for it is this:
Code: Select all
init python:
def upper(s):
return s.upper()
$ upper_string = renpy.transform_text("{b}Not Upper{/b}", upper)
But not being a programmer I could be completely off, as I didn't even know how to implement it to test if it might work.
So what I am looking for is either a way to replace the line, another way to show both the nvl and the adv textbox at the same time without that small issue or, be told that neither is possible and go with "..." instead, which has a better feel to it than just an empty line.