Processing not loading files

edited December 2013 in Questions about Code

For some reason when trying to load a font or a file, even though the files are in the data folder, Processing still gives me an error saying they are not there.

Here's the code, am I doing something wrong?

PFont font;

String[] first = loadStrings("intro.txt");


void setup(){
 font = loadFont("HelveticaNeue-Bold-48-48.vlw");
 println(first);
}

Answers

Sign In or Register to comment.