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.backgroundColor

Usage

galleryInstance.backgroundColor

Description

Property; a number that represents the RGB numeric value for the background of the gallery. This property will have no effect when Gallery.backgroundTransparent is set to true. The default value is 0x000000(black).

Example

The following example will make the background of the gallery white. 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.backgroundColor = 0xFFFFFF;
my_gallery.addItem({url:"photo1.jpg"});
my_gallery.addItem({url:"photo2.jpg"});
my_gallery.addItem({url:"photo3.jpg"});


Comments

Be the first to write a comment

You must me logged in to write a comment.