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.autoFlip
Usage
galleryInstance.autoFlip
Description
Property; a Boolean value that indicates if the gallery should automatically with an interval navigate to the next item. The default value is false.
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.