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
|
Sample 1The 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 >> |
|
Sample 2Three photos moving from right for making panoramic slideshow. show >> |
|
Sample 4The butterfly moves through the labyrinth. show >> |