Hello mootoolers,
I've been trying to resolve this on and off for some time now.
Any pointers would be greatly appreciated.
I start the slideshow with this inside of a :
window.addEvent('domready', function() {...
var ssShow".$this->show_id." = new Slideshow(this.el, null,{.....
I start the slimbox inside of a different addEvent('domready',
function() :
Slimbox.scanPage = function() {
$$(document.links).filter(function(el) {
return el.rel &&
el.rel.test(/^lightbox/i);
}).slimbox({....
Once they are both started I am trying to add the pause slideshow
function pause(1)
to the open and close of the lightbox /version slimbox 1.69
Here are a few of the possibilities I've tried so far with no luck.
Slimbox.scanPage.open = function(){ ssShow'.$this-
>show_id.'.pause(1).bind(ssShow'.$this->show_id.'); };
Slimbox.scanPage.close = function(){ ssShow'.$this-
>show_id.'.pause(0).bind(ssShow'.$this->show_id.'); };
________________
Slimbox.scanPage.open: function(){ ssShow'.$this->show_id.'.pause(1); };
Slimbox.scanPage.close: function(){ ssShow'.$this-
>show_id.'.pause(0); };
________________
Slimbox.open = function(){ ssShow'.$this-
>show_id.'.pause(1).bind(ssShow'.$this->show_id.'); };
Slimbox.close = function(){ ssShow'.$this-
>show_id.'.pause(0).bind(ssShow'.$this->show_id.'); };
________________
Slimbox.open : function(){ ssShow'.$this-
>show_id.'.pause(1).bind(ssShow'.$this->show_id.'); };
Slimbox.close : function(){ ssShow'.$this-
>show_id.'.pause(0).bind(ssShow'.$this->show_id.'); };
TIA
----------
Daiv Mowbray
[email protected]
----------
Sincerely,
Daiv Mowbray
[email protected]
========