//  AnimatedText
// This macro demonstrates how to use the setFont, 
// setColor, snapshot, reset and drawString functions.
// See Also: BouncingBar, Pong and RotatingPolygon macros

  if (nImages==0) run("Fluorescent Cells (58K)");
  setFont("Serif", 100, "antialiased");
  setColor(255,255,0);
  snapshot();
  x=-20; y=-20;
  while (x<getWidth) {
      reset();
      drawString("ImageJ", x++, y++);
  }
