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 product, without the FlashTuning.net written permission, but you may modify its content.
Use the product in ONE SINGLE COMMERCIAL project (website, CD-ROM, offline presentation etc), your personal work or work for a client. You may not redistribute / resell the product, without the FlashTuning.net written permission, but you may modify its content.
Use the product in MULTIPLE COMMERCIAL / NON-COMMERCIAL projects (websites, CD-ROMs, offline presentations etc), your personal work and work for a client. You may not redistribute / resell the product, without the FlashTuning.net written permission, but you may modify its content.
×
just realised it’s ie’s zoom feature. all other content on the page responds to the zoom setting but the flash coverflow won’t scale.
Hi,
I bought the plugin. Mostly it’s great but it doesn’t display at the correct size in ie9. If you view this page in most browsers the flash is 590px wide but in ie9 on windows 7 it’s significantly smaller.
Have you tested in ie9, Is there a work around for this?
Thanks.
Hello? Does anyone monitor these comments?
Hi Cappy Popp,
We have received your comments and we have noted your issues. Due to the large volume of clients request it may take some time to get a response.
In regard to your issues we are letting you know that we have send them to our developers and as soon as we have the issues fixed we will update the file.
Thank you for your patience!
Support Flashtuning
One more issue: when I rapidly click the paging arrows on the control occasionally the control gets very confused and just renders everything in a line all at the planeRotationAngle. See image:
http://i.imgur.com/Ohf3D.png
Any ideas?
Feature request:
Is it possible/would it be possible to have a way to load a different set of images based on an event (ExternalInterface via JavaScript or embedded buttons)? Current I am using this control to show different sets of images based on a button click. Only one control is visible at a time but it feels very inefficient to have to load multiple controls when I really just want to change the data that it’s showing.
Have a couple of problems with what is otherwise a great control!
Here they are:
First, I’m having a problem with clicking the initial image. I’ve noticed that when I the control loads the first transition between planes/images is messed up when a user clicks on the first image. Here are my settings for the control from the xml file:
[autoPlay value="true"]
[autoPlayTime value="2"]
[startSlideIndex value="4"]
[enterEffect value="move"]
[enterEffectDuration value="1.0"]
[planeRotationAngle value="65"]
[planePadding value="150"]
See the following 3 screenshots which should make it clear.
This image shows the starting point of the control:
http://i.imgur.com/GbNCr.png
This image shows what should happen. The plane transitions from 4 to 5. Note I have not clicked on the initial image:
http://i.imgur.com/19A7O.png
Here’s the error. This image shows what happens if you click on the first image as the coverflow is waiting to transition to the second image:
http://i.imgur.com/4xZxc.png
Note that in the error case all images slide out to the [planeRotationAngle] and no image is currently on a flat plane. It’s definitely an issue as it only happens on the first image and only when you click on it after the control is loaded but before the first transition occurs.
Second, what are the artifacts on the right side of the control that are present in this image: http://i.imgur.com/GbNCr.png This is right after the control first loads.
Thank you for your time!
hey
how to do this one couldd u plz tel me
send me some .fla files i interested
thanking…
Regards
Seshu
Designer
Hi, great component but I’m having trouble replacing images to get them to appear in similar scale. The flash seems to cache images and despite changing the image in the assets images library and refreshing browser (tried deleting IE Cache too) but the flash still remembers the last images?? What am I doing wrong or is there a reset or cache wipe for flash? Thanks. p.s. the Setup-Xml is well documented and it’s a great looking product.
Hey,
I bought coverflow3d and I’d like to be able to load it into another swf. However when I try I get this error:
CoverFlow :: – COVER FLOW
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at flashcreed.cover::CoverFlow()
at flash.display::Sprite/constructChildren()
at flash.display::Sprite()
at flash.display::MovieClip()
Do you have any advice as to how I can fix this problem?
Thanks
Hey,
I dug into the main coverflow.as class and made this revision. Now the swf will work in the case that it is loaded into another swf. The problem was that it was trying to access stage before it was added to the display list. This check and event listener in the contructer solves the problem. So first thing check to see if stage is available i.e. have I been added? If so go ahead no problems. If not listen for added to stage event and run constructor init function then.
Look for this code and replace it in coverflow.as (sorry about the formatting – this window doesn’t paste so good)
////////////////////////////////
//Cover Flow constructor
public function CoverFlow()
{
if (stage) constructInit();
else addEventListener(Event.ADDED_TO_STAGE, constructInit);
}
private function constructInit(e:Event = null):void
{
trace(“CoverFlow :: – COVER FLOW”);
removeEventListener(Event.ADDED_TO_STAGE, constructInit);
FilterShortcuts.init();
ColorShortcuts.init();
stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.quality = StageQuality.HIGH;
if(root.loaderInfo.parameters.setupXML!=undefined)
{
setupXML = root.loaderInfo.parameters.setupXML;
}
else
{
setupXML = “assets/xml/cover-settings.xml”;
}
_loader = new FcCustomLoader();
_loader.addEventListener( FcCustomEvent.XML_LOADED, setupLoaded );
_loader.loadXML( setupXML );
}
///////////////////////////////
halloo i love flash player. i mean it
Does this trigger events within Flash? Can I click on an image and have that trigger a function call?
Hi Mick,
If you want to call custom functions you have to edit the source AS3 files.
Thank you!
Hi,
We’re glad you’ve found the Cover Flow product useful.
Regards,
Flashtuning
Exelent quality product, really easy to work with. Thank you so much.
Looks wonderful implemented in our website.
I download one of work from the exchange in Dreamweaver, but there is some thing that I want to change I do not know if it is possible? please contact me to know if I have to buy it to make that change.
avenel Pierre Vilsaint
(321) 945-7958
Hi,
Thank you for your interest, you can do this by using javascript inside html. Check question number 18,19 and other useful questions from the FAQ area on our site.
Flashtuning
Hi, just curious if 3D cover flow can be coded to produce a pop up text message on the image instead of going to a URL. If so, how is that modified? In XML, and if so, do you have instructions?