Home / Components / Galleries & Slideshows / coverFlip3D /

coverFlip3D

313 purchases

flashframer Galleries & Slideshows coverFlip3D Inspired by the iTunes coverflow layout. The coverFlip3D Flash component displays images and videos in an engaging interactive 3D environment powered by the Papervision3D engine. $9.95 http://www.flashcomponents.net/component/coverflip3d.html http://www.flashcomponents.nethttp://u1.flashcomponents.net/components/small/875_1.png

License:

By purchasing and downloading this license, you are entitled, as buyer, to use  the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website&nbs... [+]

> View graphic table with full license features

$9.94

buy now

Package includes: MXP

Flash Version: Flash CS3, Flash CS4

Viewable with: Flash Player 9

Action Script: ActionScript 3.0

Product ID:F0800875

Author:

flashframer

flashframer avatar

We provide innovative premium Flash components and Flash files that enhance your projects. Our products...

Tags:

 

Recently viewed:

HTML / XML Video List AS3 - v1 ( & FLV Player )
3D Image Stack XML AS2
AV News Rotator
3D Image Carousel Gallery XML [ AS2 & AS3 ]
3D Image Zoom Menu XML AS3
XML Video Player Gallery v3
Titanium White Video Player
PhotoFlip 3D CS AS3
GuestBook! v1.0
2D - Yeah! Gallery (v1.0)[Lite]
3D - Yeah! Gallery v(2.0)
HTML / XML Video Gallery White AS2 ( & FLV Player )
Inspired by the iTunes coverflow layout. The coverFlip3D Flash component displays images and videos in an engaging interactive 3D environment powered by the Papervision3D engine. You can navigate through the images by clicking on an image, using the supplied skinnable scrollbar, or the keyboard arrow keys. An image or video can be flipped over to reveal its title and description. The coverFlip3D is packed with customizable parameters including spacing, angle, camera position, slideshow, borders, and much more.

All settings and images/videos can be changed through the component inspector or the XML file:
- Custom X, Y, and Z spacing settings;
- Custom turn angle setting;
- Custom center gap setting;
- Custom center image standout amount;
- Custom camera pitch and distance;
- Custom scrollbar width, height, and Y position;
- Optional slideshow feature with custom delay setting;
- Optional slideshow auto start on load;
- Custom image border width and color;
- Custom image reflection setting;
- Optional link click though;
- Optional center, left, or right starting position;
- Choose whether or not videos play automatically or not;
- Custom transition length;
- Skinnable scrollbar, buttons, and description box;
- Supports all Flash image and video formats;
- ActionScript API available.

$9.94

buy now

License:

Personal License By purchasing and downloading this license, you are entitled, as buyer, to use  the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website or other multimedia project not generating income ), your personal work or work for a client. You may not redistribute / resell the functionality provided with the purchased product without the author's and / or FlashComponents.net written permission, but you may modify its content. In case you want to use the product for a commercial project then you will have to buy the 'Commercial License'.

Usage Terms: Personal Commercial Multiple
Use in ONE SINGLE NON-COMMERCIAL project
Unlimited use in the same project
Use in ONE SINGLE COMMERCIAL project
For your client's ONE SINGLE COMMERCIAL project
MULTIPLE COMMERCIAL projects
For your client's MULTIPLE COMMERCIAL projects

Other by flashframer:

internalCarousel Pro

The internalCarousel Pro Flash component displa...[+]

More >>

rotaryGallery

The rotaryGallery displays images and Flash .sw...[+]

More >>

space3D

The space3D flash component displays images or ...[+]

More >>

1 / 22

Featured components:

PhotoFlow (AS2 and AS3)

The photoFlow Flash component displays multiple...[+]

More >>

3D Environment

Build 3D interactive interfaces and environment...[+]

More >>

Fluid Gallery

Dock style, XML driven image gallery with auto ...[+]

More >>

56 comments

Add comment

  • What is the proper pixel setting to allow images to display without grain?



    #  /  PM  /  posted on Feb 04, 2010
  • Hello mike.garro,


    Since the coverFlip3D can have an infinate number of displays the best thing to do is to set the component up the images and settings you want.


    Preview you file working.
    Take a screenshot of the component.
    Open the screenshot in photoshop.
    Measure the size of the center image.
    This is the size you want to make all your images.
    This will make the images look good




    #  /  PM  /  posted on Feb 08, 2010
  • Hello,
    is there a way to release memory space allocated by coverFlip after removing it from stage?
    thanks!!



    #  /  PM  /  posted on Apr 20, 2010
  • Hello chougui,


    Unfortunately loading the coverFlip3D into another movie clip and removing it causes this issues. Currently there are no work around. Sorry!



    #  /  PM  /  posted on Apr 20, 2010
  • Hello, I am currently working with coverFlip3D and was wondering how the component loads and displays the XML nodes in the coverflow list. I am trying to filter the images by Genre by using a list component. Is there anyway of doing so? I have a demo on how to filter XML but I need to know how to apply it to coverFlip3D. Below is some AS3 script on filtering XML.

    var xmlLoader:URLLoader = new URLLoader();
    var xmlData:XML = new XML();
    //Adding an event listener to notify when loading is completed
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    //Load the XML file
    xmlLoader.load(new URLRequest("students.xml"));

    function LoadXML(e:Event):void {
    xmlData=new XML(e.target.data);
    ParseStudents(xmlData);
    }

    function ParseStudents(StudentInput:XML):void {
    //Creating an xml list that will store the book info
    var books:XMLList=StudentInput.image.children();
    //Creating a xml list that will store the book's ISBN number
    var studentAttributes:XMLList=StudentInput.student.attributes();
    //Filter out all of the books with a "Paperback" cover
    var descriptionList:XMLList = StudentInput.image.(description == "Rock");
    trace(descriptionList);

    }



    #  /  PM  /  posted on May 05, 2010
  • Hello, Is there a way to give the component the xml file url through JavaScript? I’d like to load a different xml file for different types of photos. Thanks



    #  /  PM  /  posted on May 10, 2010
  • Hello gty622,


    Yes you can pass the xml file though JavaScript using FlashVars and the coverFlip3D api.
    You’ll have to set up your HTML page to pass a FlashVar named: xmlName
    In Flash give the component an instance name of: coverFlip3D
    Ad the code below to the first frame:


    import com.flashframer.coverFlip3D.*;


    function loaderComplete(myEvent:Event)
    { var flashVars=this.loaderInfo.parameters; coverFlip3D.xmlFile = flashVars.xmlName;
    }


    this.loaderInfo.addEventListener(Event.COMPLETE, loaderComplete);



    #  /  PM  /  posted on May 11, 2010
  • Hello , I have a doubt. Im doing a presentacion with the coverflip3D , but I notice when I do the .exe alone (without the folder IMAGES) It does not work. Is there any way that I can only send the .exe without extra folders.But I want the images can see in the exe.
    Is a presentation so the client only wants to recive one archive. (.exe) and see all the images but without extra folders (folder IMAGES)



    #  /  PM  /  posted on May 29, 2010
  • Hello,
    I used the code below in coverFlip3D_example_2.fla to test. A FlashVar named xmlName has been added in HTML page. However it does not work. The error is "1119: Access of possibly undefined property xmlFile through a reference with static type Class.". Can you give me some suggestions?

    ActionScript:
    import com.flashframer.coverFlip3D.*;
    function loaderComplete(myEvent:Event)
    { var flashVars=this.loaderInfo.parameters; coverFlip3D.xmlFile = flashVars.xmlName;
    }
    this.loaderInfo.addEventListener(Event.COMPLETE, loaderComplete);

    HTML code:
    <param name="flashVars" value="xmlName=config1.xml" />

    Thanks



    #  /  PM  /  posted on May 31, 2010
  • Thanks for the component. It's very easy to optimize, but i also have problems with my cpu.

    I have about 21 images (25kb each) and my cpu load is about 70% - 80%.

    It would be great if there would be any option to fix this.



    #  /  PM  /  posted on Nov 03, 2010
  • I am looking for a way to display pictures in a banner with this type of an application. Do you need any other programs to run it? Does it offer a copy and paste code for applying in html fields? The website supports flash but I am not familiar with this kind of advanced component.

    Can you give me a little more info on what I will need for this component to work within my website?



    #  /  PM  /  posted on Jan 20, 2011
  • Cannot seem to get the description, title working on the flip / reverse of the images.......tried using the CDATA tag suggested with the xml, but doesnt work. and the descriptions doesnt work when i do this in flash only also. ANY HELP PLEASE



    #  /  PM  /  posted on Jan 20, 2011
  • hi, ive bought this component and everything worked great, until i tried to upload it to my site (omanuthageves.co.il) - it just doesnt show anything. ive checked the path and everything, nothing. ive then tried it on the dreamweaver and its not showing up either. it seems that only on flash or the html files it works, when i try anything else it doesnt show up. im using joomla but im pretty sure its not related since its not working on DW either

    please help!

    thank you, great component BTW!



    #  /  PM  /  posted on Mar 22, 2011
  • btw i tried specifing the exact path, but it didnt help anyway



    #  /  PM  /  posted on Mar 22, 2011
  • Hi,

    You do not respond to my pm, so let me try it this way:

    Can you estimate a cost for custom work on your coverflip3D component?

    here is a general idea of what i need ( will go more in deatail once i know if i can afford it ):

    i need there to be 4 types of covers: 1. img > flip > text (this is one that allready exists) 2. img > flip > another img with text on the bottom 3. video > flip > text (this is one that allready exists) 4. img > flip > multiple imgs with text ( this one is hard to explain without making a drawing, so maybe you can give me yr email adress and i can send it to you)

    i want to make a back end my self so i will need to be able to adress the 4 types seperately.

    can you also put a time estimate on this kind of work?

    Let me know if you have any questions.

    kind regards, Ben



    #  /  PM  /  posted on Mar 23, 2011
  • hello, i really need your help: is there a way to remove the scroll bar BUT TO KEEP the buttons? (right / left) my client want the buttons but not the scroll bar

    ive tried to minimize the height of the bar to 0px but it changed the buttons as well (strnage -when i change it to 1px the buttons stayed normal)

    please help!



    #  /  PM  /  posted on Apr 15, 2011
Please login to post comments.