Response title
This is preview!




Click on Join Now to Sign Up
FFScala-32 to 101! Cacti but it does not work , please help..
PFont font; // The font must be located in the sketch's // "data" directory to load successfully font = loadFont("FFScala-32.vlw"); textFont(font); text("word", 15, 30); fill(0, 102, 153); text("word", 15, 60); fill(0, 102, 153, 51); text("word", 15, 90);PFont font;
// The font must be located in the sketch's
// "data" directory to load successfully
font = loadFont("FFScala-32.vlw");
textFont(font);
text("word", 15, 30);
fill(0, 102, 153);
text("word", 15, 60);
fill(0, 102, 153, 51);
text("word", 15, 90);
PFont myFont;
void setup() {
size(200, 200);
// Uncomment the following two lines to see the available fonts
//String[] fontList = PFont.list();
//println(fontList);
myFont = createFont("AS-TTBidisha_Bold", 32);
textFont(myFont);
text("!@#$%", 10, 50);
}