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.imageHeight
Usage
galleryInstance.imageHeight
Description
Property; The default height for an item. The default value is 200. The imageHeight is overridden when the height on an individual item is set or when Gallery.imageKeepAspect is set to true.
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;
my_gallery.setSize(500, 200);
my_galelry.imageOffset = 75;
my_gallery.
imageWidth = 150;
my_gallery.
imageHeight = 150;
my_gallery.imageKeepAspect = false;
my_gallery.addItem({url:"me.jpg",
description:"This is me"});
my_gallery.addItem({url:"colleagues.jpg",
description:"My
colleagues"});
my_gallery.addItem({url:"office.jpg",
description:"The office"});
Comments
Be the first to write a comment
You must me logged in to write a comment.