- Sep 30, 2018
- 102
- 70
Hi guys,
when I think it's finish, another case arises from the shadow...
Look at :
The problem is with string tags. If I use a common string variable, myString here, all is ok.
If I use a class with string propertie "dialog", the first tag {i} is good, but the endind tag {/i} isn't properly interpreted.
An idea ?
when I think it's finish, another case arises from the shadow...
Look at :
Python:
.../...
$ listDialog = [
( classStory( last = 1, dialog="Here is one story line.\n{i}%s- Here is a Talk ?{/i}\nAnother story Line" % (Narrator.fontColor)))
]
myString = "Here is one story line.\n{i}%s- Here is a Talk ?{/i}\nAnother story Line" % (Narrator.fontColor)
.../...
If I use a class with string propertie "dialog", the first tag {i} is good, but the endind tag {/i} isn't properly interpreted.
An idea ?