Closed GKFX closed 10 years ago
I got the same problem and the same error message. Win7 32bit processing 2.2.1 Android mode (ON Java mode no problem)
I'm on it!
OK, I don't have a Windows in front of me but I'm guessing Base.openURL("file://" + file.getAbsolutePath());
needs to be replaced with Base.openURL(file.toURI().toString());
, because we're currently missing some single character, and Java's libraries can do the whole thing for us.
We're at processing/processing-android#51 now.
Opening Processing in Android mode, typing/pasting the sketch below, selecting ellipse, and clicking right-click->
Find in Reference
gave an error dialog ("Could not open...") and the following stack trace.Pasting the URL from the stack trace into Firefox worked, but it auto-corrected it to
file:///C:/Program%20Files%20%28dev%29/Processing/build/windows/work/modes/java/reference/ellipse_.html
. (Extra slash at start and backslashes to forward-slashes). No similar bug was observed in Java mode. Windows XP SP3.