// AboutTool
//
// This macro demonstrate how to create a tool that performs
// an action when you click on its icon in the tool bar.
// The tool, which has a "?" icon, displays the
// "About ImageJ" icon when you click on it.


  // Displays the "About ImageJ" window when
  // when user clicks on the "?" tool bar icon.
  macro "About Tool Action Tool - C059T3e16?" {
      requires("1.37t");
      run("About ImageJ...");
  }
