Search found 1 match

by denis053
Mon Apr 30, 2018 5:37 pm
Forum: Ren'Py Questions and Announcements
Topic: re: On Asking Questions
Replies: 113
Views: 21868

Re: On Asking Questions

I try to run this code:

Code: Select all

    $ texta1 = "testtext"
    image testText = Text(texta1, size=80)
It shows: NameError: name 'texta1' is not defined

Code: Select all

    $ texta1 = "testtext"
    image testText = Text("[texta1]", size=80)
Same error.
What i doing wrong?