Dazzle your viewers with 3D photo navigation.
Create an amazing gallery with cool perspective effects in seconds and
give your photos stunning 3d and camera effects. The component is
fully ActionScript 2 compatible.
3D ImageFlow Gallery Reference
Gallery.autoFlipInterval
Usage
galleryInstance.autoFlipInterval
Description
Property; the time in milliseconds an item will be selected before continuing to the next when the Gallery.autoFlip property is set to true. The default value is 3000.
Example
The following example will let the gallery automatically flip to the next image with an interval of 2000 milliseconds. To try this code, drag a Gallery component to the Stage and give it the instance name my_gallery. Add the following code to Frame 1 in the timeline:
var
my_gallery:com.flzone.imageflow.Gallery;
my_gallery.addItem({url:"photo1.jpg"});
my_gallery.addItem({url:"photo2.jpg"});
my_gallery.addItem({url:"photo3.jpg"});
my_gallery.autoFlipInterval = 2000;
my_gallery.autoFlip = true;
Comments
Be the first to write a comment
You must me logged in to write a comment.