Closed (fixed)
Project:
Views Slideshow: ImageFlow
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
19 Apr 2009 at 01:56 UTC
Updated:
3 Jul 2009 at 21:10 UTC
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
Comment #1
metabits commentedIt 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):
I changed for:
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
Comment #2
metabits commentedBy 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
Comment #3
aaron commentedThe 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
Comment #4
aaron commentedOK, 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.