I'm unable to get any transition to work except for fade. This is what my jquery.extend looks like. It doesn't change whether set to fade or another transition.

<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, { "basePath": "/endurocoach/", "admin_menu": { "margin_top": 1 }, "ssc": { "1": { "timeout": 2000, "speed": 2000, "pause": true, "next": "#ssc-next-1", "prev": "#ssc-previous-1" }, "2": { "timeout": 2000, "speed": 2000, "pause": true, "next": "#ssc-next-2", "prev": "#ssc-previous-2" } } });
//--><!]]>
</script>

Thanks

Comments

jonathanwinn’s picture

Fade is the only one that works for me too. Subscribing.

gterez’s picture

Status: Active » Needs review

Looks like this is simple: In the slideshow_creator.cck.inc file, where the ssc array is pushed into the Drupal jQuery object, the fx setting has been forgotten.
Look for these lines of code (line 333):

  array_push($attributes, empty($ssc['#name'])   ? '' : 'name='.   $ssc['#name']);
  array_push($attributes, empty($ssc['#rotate']) ? '' : 'rotate='. $ssc['#rotate']);
  array_push($attributes, empty($ssc['#blend'])  ? '' : 'blend='.  $ssc['#blend']);
  array_push($attributes, empty($ssc['#height']) ? '' : 'height='. $ssc['#height']);
  array_push($attributes, empty($ssc['#width'])  ? '' : 'width='.  $ssc['#width']);
  array_push($attributes, empty($ssc['#layout']) ? '' : 'layout='. $ssc['#layout']);

And insert a similar line for fx:

  array_push($attributes, empty($ssc['#fx']) ? '' : 'fx='. $ssc['#fx']);
jonathanwinn’s picture

Thank you. That did the trick for me.

brmassa’s picture

gterez,

since there is no option for contacting you on your profile, i ask here: i used to use this module a lot, so fixing stuff was easy. but now i dont have the time and i dont use it, so it gets more and more painful to maintain it. would you like to be a co-maintainer?

regards,

massa

eurekaconsult’s picture

Pls can anyone tell me how to use the jQuery plugin on my slideshow?
The images are showing with >next navigation link but no effects.

also I cannot automatically load images from a directory using the tag
dir|files/|yes|Starkeep.com|Beach Events last year|Aren't they great?|_self|].
Any clue will be appreciated. This is my page
http://starkeep.com/gallery
Thanks.

brmassa’s picture

Status: Needs review » Closed (won't fix)

Guys, there is a drupal.org initiative about unifying some modules. Since Slideshow Creator is by far less powerful and flexible and other solutions, I will not support it more. Please, take a look on other similar modules.