3D ImageFlow Gallery Reference

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.
 

Make sure to take a look at the online documentation as well.

Gallery.items

Usage

galleryInstance.items

Description

Property (write-only); Accepts an array with the gallery items.

Example

To try this example, 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;
var images:Array = new Array();
images.push({url:"me.jpg", description:"This is me"});
images.push({url:"colleagues.jpg", description:"My colleagues"});
images.push({url:"office.jpg", description:"The office"});
my_gallery.items = images;


Comments

Be the first to write a comment

You must me logged in to write a comment.