[Proto-Scripty] Re: How to create slideshow type effect?

2010-06-11 Thread Kruncher
Thanks for your response Patrick, works perfectly. Sorry for the long delay! On 23 May, 18:48, patrick patrick99...@gmail.com wrote: What you could do is set a variable when the fade begins, and reset it when it ends, and then limit your tab buttons from having action if the fade is in

[Proto-Scripty] Re: How to create slideshow type effect?

2010-05-23 Thread patrick
What you could do is set a variable when the fade begins, and reset it when it ends, and then limit your tab buttons from having action if the fade is in progress. so it would look like: // inside tab click function: if (this.fade_in_progress) { return false; } and then you'd do something

[Proto-Scripty] Re: How to create slideshow type effect?

2010-05-21 Thread Kruncher
Sorry, I miss-typed my code when I was writing this message, I missed the from attributes. // Hide last page? if (this.pageIndex != -1) this.pages[this.pageIndex].fade({ duration: 1.0, from: 1.0, to: 0.0 }); // Show