SWF Scout |
Create flash slideshow with fading effects from JPEG images using SWF
Scout library
IMPORTANT: if you are looking for not for low-level SWF API but for "ready-to-use" library for converting JPG, BMP, PNG images into flash slideshow with transition effects - please check our SWF SlideShow Scout Library Slide Show using simple fading out effect for images
Generated Flash slide show movie:
download ZIP with all required image files and VB script VB source code: W = 640
H = 480 MaxDepth = 65000 FadeOutTime = 1.5 ' seconds PauseTime = 2 ' seconds FPS = 12 ' frames per second ImagesCount = 3 ' number of images Set Movie = CreateObject("SWFScout.FlashMovie") ' Movie creating and setting parameters Movie.BeginMovie 0,0,W,H,1,FPS,6 Movie.AddPreloader 0, 0,0,0,180, 0,255,0,30, "Loading (%d% completed)...", -1 CurDepth = Movie.CurrentMaxDepth for i=1 to ImagesCount Below is a variation of example above modified to add support for starting slideshow on first mouse move:
W = 640 Set Movie = CreateObject("SWFScout.FlashMovie") ' Movie creating and setting parameters Movie.BeginMovie 0,0,W,H,1,FPS,6 Movie.AddPreloader 0, 0,0,0,180, 0,255,0,30, "Loading (%d% completed)...", -1 Font = Movie.AddFont( "Arial",12,true,false,false,false,0) ' add sprite (movieclip) to listen to mouse
events ' // uncomment line with ".PLACE_CompileEvent"
function below CurDepth = Movie.CurrentMaxDepth for i=1 to ImagesCount ' stop movie after first image CurDepth = CurDepth +1
download ZIP with all required image files and VB script Extended slide show samples: |
|
|
||