loadText and createText trouble
in
Programming Questions
•
8 months ago
Hi there!
I have to create an interactive poster for my interactive art class and the main element is (obviously) text. I feel like I'm doing everything correctly, I'm not getting any errors, but when I run the code all I get is a white screen. I'm thinking there's some weird syntax error in there somewhere that I'm missing, but hopefully a fresh pair of eyes will help me find it.
here's my code
PFont script69; //declares name for font sized 69
void setup() {
size(500,500);
smooth();
script69 = createFont("Vivaldii", 69,true); //inserts vivaldi font, sized 14
}
void draw() {
background(255,255,255);
textFont(script69,69);
fill(255);
text("Silverettes",250,250);
}
And for anyone who's curious, we need to make a poster about an event on our campus (I go to Northern Illinois University) and my poster is for auditions for the Silverettes dance team.
Any help would be GREATLY appreciated!!!!
1