Version 2 of my popular IgalleryX, as many of you have requested, the new version now support SWF and FLV Videos. You also have 4 variations beside the orignal stacked looking.
Built in PV3D + AS3 , the render engine is pretty fast, creating a real 3d perspective feeling.
New Features:
- FLV Support
- SWF Support
- 4 Variations
- Papervison 3D + Actionscript 3
- Open Source
- XML Driven
- Tweener Driven
- CSS Driven
- Well commented code
- Detailed documentaion
- Light weight
Don’t have Flash CS3 ? Download free trial at Adobe
IMPORTANT: PLEASE INSTALL PV3D AND TWEENER EXTENSION BEFORE COMPILING (SEE DOCUMENTATION )
__________________________________________________________
FAQ: HOW DO I LOAD IGALLERYX INTO ANOTHER MOVIE CLIP :
I’ll update the current package with some modifications soon, in the meantime, you can do like this:
1. Create a new FLA and put it in the same folder with IgalleryX. (for example: myLoader.FLA)
2. Let say you wanna load photoStack3d.swf (the image version). In the first key frame, paste these following code:
import flash.net.URLLoader;
import flash.net.URLRequest;
loadme();
function loadme():void
{
var l:Loader = new Loader();
var req:URLRequest = new URLRequest("photoStack3d.swf");
l.load(req);
l.contentLoaderInfo.addEventListener(Event.INIT, loaded);
}
function loaded(e:Event):void
{
addChild(e.target.loader);
e.target.loader.content.Init();
e.target.loader.content.Create_gallery();
}
3. Open photoStack3d.as change these code:
private function Init():void
to
public function Init():void
and
private function Create_gallery():void
to
public function Create_gallery():void
Also in photoStack() funtion, comment these code, that is to put
//
before:
Init();
Create_gallery();
so they become
// Init();
// Create_gallery();
Compile photostack3d.FLA to export a new SWF , notice that you won’t see anything yet.
4. Open myLoader.FLA and test the movie. BOOOM the gallery has been loaded inside another clip 
FAQ: I WANT TO DISABLE THE FLIPPING NAVIGATION , HOW DO I ACHIEVE THAT ?
The quickest trick is inside Press function, change these code:
if (cID != index) changeTo(index); else ...
to
if (true) changeTo(index); else ...
_________________________________________________
MY FEATURES


MY PRODUCTS
3D Super Package

3D Gallery Bundle

Dynamic Photo Gallery

Transition Effect

Utilities – Text Effect – Preloader – Misc

Check out my Portfolio || Subcribe to my feeds
tag: photo, photos, gallery, galleries, thumbnail, photo, image, 3d, three dimension, spin, spinning, rotate, rotating, rotation, papervison 3d, papervison, actionscript 3, transition, cauria, tweener, delay, time, zoom, zoom in, zoom out, fly, fade, fade in, fade out, css, xml, dynamic, dynamically, ease, easing, scale, shadow, flip, flipping, album, albums, interactive, iTunes, stack, swf, video, videos, reflection, lift, fly, perspective, slide, sliding, scroll, scroller, scroll bar, cover flow
Posted 4 months ago