| 
<?php
/**
 * PHP SlideshowFX - example files
 *
 * Creates Flash slideshows with different changeovers
 * This Class is based on Adi Setiwans <[email protected]> (phpclasses.org) Flash Slideshow Class
 * Requirement:
 * You MUST have PHP with Ming installed as PHP Extension
 * see http://ming.sourceforge.net and http://php.net/manual/en/ref.ming.php
 * Ask your web server administrator if you don't know how to install it
 *
 * @author Dennis Suchomsky <[email protected]>
 * @license GNU/GPL
 * @version 0.1
 *
 */
 
 $movie = new SlideshowFX(250, 100, 10, '#cccccc');
 $movie->addImage('image1.jpg',5,1);
 $movie->addImage('image2.jpg',7,2);
 $movie->save('slideshow.swf');
 
 ?>
 |