SlideShow Engine Sample 2
Three photos moving from right for making panoramic slideshow.
var SSE: TSlideShowEngine; ... SSE := TSlideShowEngine.Create(400, 300, 31); SSE.ControllerMode := cmPopUp; SSE.SyncToTime := false; SSE.BGColor := $FFFFFF; SSE.IsLoop := true; SSE.AddFromFile('p1.jpg', false). AddAction(ptLayer, 1, 0, 4000, 0, true).Move(0, 0, -400, 0); SSE.AddFromFile('p2.jpg', false). AddAction(ptLayer, 2, 0, 8000, 0, true).Move(399, 0, -401, 0); SSE.AddFromFile('p3.jpg', false). AddAction(ptLayer, 3, 4000, 4000, 0, true).Move(400, 0, 0, 0); SSE.Slide[2].AddAction(ptLayer, 3, 8000, 4000, 0, true).Move(0, 0, 400, 0); SSE.Slide[1].AddAction(ptLayer, 2, 8000, 8000, 0, true).Move(-401, 0, 399, 0); SSE.Slide[0].AddAction(ptLayer, 1, 12000, 4000, 0, true).Move(-400, 0, -0, 0); SSE.Execute; SSE.SaveToFile('panorama.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 3Combines several photos of a statue with different perspective emulating rotation (the statue rotates). show >> |
|
Sample 4The butterfly moves through the labyrinth. show >> |