Posted 11 May 2013 - 02:53 AM
Hi! me again :)/>
I am trying to make a program that outputs a word of the users choice, in whatever color they want
Here is my code
i am getting the error Expected number when attempting to term.setTextColor
The way I wrote that, it should work i would think?
I am trying to make a program that outputs a word of the users choice, in whatever color they want
Here is my code
word = ""
print("What word do you want to display?")
word = read()
print("What color do you want the text to be?")
color = read()
term.setTextColor("colors." .. color)
print(word)
i am getting the error Expected number when attempting to term.setTextColor
The way I wrote that, it should work i would think?