view _xampp/splash-logo.php @ 20:04db1dd9d10d

update topic_regex_relation table when saving (new) regex file
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 23 Feb 2015 14:34:43 +0100
parents b12c99b7c3f0
children
line wrap: on
line source

<?
  $m = new SWFMovie();
  $m->setDimension(400, 100);
  $m->setBackground(0xff, 0xff, 0xff);

  $m->add(new SWFBitmap(fopen("img/xampp-logo.jpg", "rb")));

  for($i=0;$i<=100;$i++)
  {
	  $m->add(new SWFAction("alpha = $i;"));
	  $m->nextFrame();
  }

  header('Content-type: application/x-shockwave-flash');
  $m->output();
?>