loadStrings in Javascript mode
in
Processing with Other Languages
•
7 months ago
I'm trying to display a word from a word list located on my web-site. It works ok in Java mode, but in
Javascript mode nothing happens. Can I fix this? Some example code here:
- String[] Verbs = loadStrings("http://drasikproductions.web44.net/wordlists/Rest/IngedVerbs.html");
- void setup(){
- size(200,200);
- background(0);
- }
- void draw(){
- fill(255);
- text(Verbs[0],70,100);
- }
1