Wolfgang De Meuter
Last revision: November 17th, 1997

Some examples that did not make it to the manual


The following example will open a new window in your webbrowser.
{
  frame LOCAL VARIABLE:("java.awt.Frame" JAVA) newString:"Untitled";
  frame show;
  frame hide
}

This one modifies the status bar of your browser:
applet showStatusString:"Agorette is GREAT!"

Inspect the methods that can be sent to objects of the class "java.lang.Button".
{
  button LOCAL VARIABLE:("java.awt.Button" JAVA) newString:"Click Me";
  button inspect
}

Like this, you can access anything the VM implements.