How can I get my Processing executable file to display in an external monitor? The monitor is connected and working, and I can move the window from my regular Processing program over to the external and it displays just fine. But the executable insists on opening on my laptop and there's no way to move it. Ideas?
Hi--I'm trying to write a program that takes a text file as input (file is variable size, but usually runs around 1,000 words), and uses words from the file in an animation in which the words move around randomly. In the program that I have so far, the words appear (and disappear, depending on whether or not I rewrite the background), but they don't move. Any help appreciated! Here's the code:
BufferedReader reader;
boolean readerFinished;
PFont f;
float speed = 0.02;
int n = 1000;
String[] word = new String[n];
float[]xspeed = new float[word.length];
float[]yspeed = new float[word.length];
float[]xpos = new float[word.length];
float[]ypos = new float[word.length];
///////////////////////////////////////// BEGIN SETUP //////////////////////////////