more docs, add faq item to the help menu

This commit is contained in:
benfry
2005-08-15 00:39:28 +00:00
parent 9336e018a2
commit 64f6e177b8
5 changed files with 77 additions and 36 deletions
+12
View File
@@ -498,6 +498,18 @@ public class Base {
}
/**
* Opens the local copy of the FAQ that's included
* with the Processing download.
*/
static public void showFAQ() {
//Base.openURL("http://processing.org/faq/");
String currentDir = System.getProperty("user.dir");
openURL(currentDir + File.separator + "faq" +
File.separator + "index.html");
}
/**
* Implements the cross-platform headache of opening URLs
*/