view _xampp/splash-logo.php @ 13:cc36a20a68ab

automatically decide which rows (what data) should be shown in the exporting table based on the topic.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Tue, 17 Feb 2015 15:25:11 +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();
?>