SlideShow Engine Sample 3

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

var SSE: TSlideShowEngine;
    il: integer;
...
  SSE := TSlideShowEngine.Create(163, 240, 31);
  SSE.ControllerMode := cmNone;
  SSE.BGColor := RGB(116, 0, 0);
  SSE.IsLoop := true;
 
  SSE.AddFromFile('1.jpg', false).
    AddAction(ptLayer, 1, 0, 0, 0, true).Place(0, 0);
 
  for il := 2 to 8 do
    SSE.AddFromFile(IntToStr(il) + '.jpg', false).
      AddAction(ptLayer, il, (il-2) * 1000 + 500, 500, 0, true).Alpha(0, 100);
 
  SSE.Slide[0].AddAction(0, 9, 7500, 500, 0, true).Alpha(0, 100);
 
  SSE.Execute;
  SSE.SaveToFile('statue.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 >>

SWF in SWF demo with source code Flash SlideShow Engine

Sample 4

The butterfly moves through the labyrinth. show >>