Back to Scripts page
Click in the box below, select all and copy to grab the script
This is the code for a Java applet, not a JavaScript script. Don't try to put this in your HTML page! import java.applet.*; import java.awt.*; public class writeIt extends Applet { Font f = new Font("TimesRoman",Font.BOLD,36); String whatToSay; public void paint(Graphics g) { g.setFont(f); g.drawString(this.whatToSay, 100 , 25); } public void newText(String s) { this.whatToSay = s; repaint(); } }