SlideShow Engine Sample 4

The butterfly moves through the labyrinth.

var SSE: TSlideShowEngine;
 
const
     AP: array [0..13] of TPoint = ((X: 100; Y:75),
                                   (X: 320; Y:70),
                                   (X: 320; Y:150),
                                   (X: 240; Y:160),
                                    ...
                                   (X: 105; Y:370));
...
  SSE := TSlideShowEngine.Create(640, 480, 31);
  SSE.ControllerMode := cmPopUp;
  SSE.IsLoop := true;
 
  SSE.AddFromFile('map.jpg', false).AddAction(ptLayer, 1, 0, 1).Place(0, 0);
  with SSE.AddFromFile('butterfly.swf', false).AddAction(ptLayer, 2, 2, 20000) do
    begin
      MoveToPath(20, true, false, AP);
      Center(50, 50);
    end;
 
  SSE.Execute;
  SSE.SaveToFile('map.swf');
  SSE.Free;

More samples

Flash SlideShow Engine main demo with source code

Sample 1

The main demo demonstrates samples of all available effects. The source code making that you can see at the application included to the Flash SlideShow Engine setup file. show >>

Panoramic slide-show demo with source code Flash SlideShow Engine

Sample 2

Three photos moving from right for making panoramic slideshow. show >>

Photo with rotation slide-show demo with source code Flash SlideShow Engine

Sample 3

Combines several photos of a statue with different perspective emulating rotation (the statue rotates). show >>