// Dartmouth CS 2, Winter 2008, Chris Bailey-Kellogg // Notes 19 | Sketch 3 import org.switchboard.*; Switchboard board; void setup() { board = new Switchboard(this); board.setYahooKey("INSERT YOUR KEY HERE"); board.yahooWeb("dartmouth"); } void draw() { } // Called for each search result void resultReceived() { println(board.yahooWeb.getTitle() + " -- " + board.yahooWeb.getUrl()); } // Called when results finished void endOfResults() { println("done"); }