I've tried to get rid of them making some changes in the original ImageFlow script like it tells in the website:

http://finnrudolph.de/ImageFlow/Documentation

and I changed in imageflow.packed.js

domReady(function()
{
	var instanceOne = new ImageFlow();
	instanceOne.init({ ImageFlowID:'myImageFlow' });
});

with

domReady(function()
{
	var instanceOne = new ImageFlow();
	instanceOne.init({ ImageFlowID:'myImageFlow', captions:false });
});

but nothing changed in my flow.

Any suggestions?

Thanks in advance.

psc

Comments

metabits’s picture

Title: How to make Captions not to show? » Found my self a solution...

It is not very elegant but untill this feature is integrated in the module itself, works for me.

In line 15 of 'views_slideshow_imageflow.js' (the script in the imageflow module):

imageflow.init({ ImageFlowID: id, reflections: false, imagesHeight: flow['imagesHeight'], aspectRatio: flow['aspectRatio'], imageCursor: flow['imageCursor'], startID: flow['startID'], slider: flow['slider'], sliderCursor: flow['sliderCursor'] });

I changed for:

imageflow.init({ ImageFlowID: id, reflections: false, captions: false, imagesHeight: flow['imagesHeight'], aspectRatio: flow['aspectRatio'], imageCursor: flow['imageCursor'], startID: flow['startID'], slider: flow['slider'], sliderCursor: flow['sliderCursor'] });

as you see, the only thing is to add 'caption: false' to the code.

This makes me to hack the code each time a new update comes, so I really hope that this feature will be soon included in the settings in Views.

psc

metabits’s picture

Title: Found my self a solution... » How to make Captions not to show (and change values for some other options)?

By the way, this method could be used to pass other options of ImageFlow script top our view: With a tray-and-error method I was able to set as well:

- refletion (this doens't work)
- imageFocusM (works)
- reflectionP (works)
- percentOther (works)
- scrollbarP (works)

I didn't try the rest of the options but if anybody did some tries it would be nice to know it.

psc

aaron’s picture

Category: support » feature

The plugin's reflection options are insecure and would cause a performance hit. Thus it's not supported in the module. I should add support for the other options; tagging this issue appropriately.

By the way, you can use imagecache & imagecache effects to get a reflection on your slideshow; see http://drupal.org/node/426312#comment-1450014

aaron’s picture

Status: Active » Fixed

OK, I've added most of these (and a few more).

Please let me know of other specific plugin options you want, and I'll see about adding them later.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.