Back in February or March, one of the Adobe Flash updates hosed the full screen display for slideshowpro. They released an update in March for 1.9.8.7 that fixes it, including the standalone version

Plugging in the new slideshowpro.swf doesn't work, and after looking at it, I think the new movie will only function properly with an swfobject embed.

I will probably modify the module to use swobject for my own implementation, but just an FYI in case anyone is looking for the module to work with the version of ssp that fixes full screen implementation

Comments

sansui’s picture

Just a heads up for anyone trying to use this with new version, you will need to change the parameter xml path provided by ssp_views.module. It appears that the new standalone version of SSP includes "cachebust" by default, which adds another "?q=rnXXXXXXXXX" to the string and breaks the path.

$paramxml_path = $base_path.'/?q=ssp_views/'.$view.'/'.$op.'/'.$args.'/params.xml';

Should become:

$paramxml_path = $base_path.'/ssp_views/'.$view.'/'.$op.'/'.$args.'/params.xml';

After this I think you can simply plug the new movie in, although I opted to change the embed to swfobject embed.