<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>E2interactive Forums Tag: slideshow - Recent Posts</title>
		<link>http://www.e2interactive.com/forums/tags/slideshow</link>
		<description>E2interactive Forums Tag: slideshow - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Sep 2010 14:13:59 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.e2interactive.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.e2interactive.com/forums/rss/tags/slideshow" rel="self" type="application/rss+xml" />

		<item>
			<title>e2 on "slideshow/Autoplay feature in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshowautoplay-feature-in-gallery#post-1279</link>
			<pubDate>Thu, 09 Jul 2009 18:41:38 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1279@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;You could also look at the &#60;a href=&#34;http://www.e2interactive.com/e2-photo-gallery/&#34;&#62;(E)2 Gallery Pro&#60;/a&#62; which has the slideshow built in.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>akashkhairate on "slideshow/Autoplay feature in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshowautoplay-feature-in-gallery#post-1277</link>
			<pubDate>Wed, 08 Jul 2009 11:21:22 +0000</pubDate>
			<dc:creator>akashkhairate</dc:creator>
			<guid isPermaLink="false">1277@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;&#60;strong&#62;slidespeed&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;You can set the slidespeed in the body tag above to the delay between frame change.  Please remember the value should be in milliseconds.&#60;/p&#62;
&#60;p&#62;E.g..&#60;br /&#62;
&#60;code&#62;&#38;lt;body onLoad=&#38;quot;setTimeout(&#38;#39;slideshow()&#38;#39;,3000)&#38;quot;&#38;gt;&#60;/code&#62; will change frames every 3 seconds.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>akashkhairate on "slideshow/Autoplay feature in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshowautoplay-feature-in-gallery#post-1276</link>
			<pubDate>Wed, 08 Jul 2009 11:14:57 +0000</pubDate>
			<dc:creator>akashkhairate</dc:creator>
			<guid isPermaLink="false">1276@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Quick Solution (2 Steps)&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Step-1:&#60;br /&#62;
Add the following Javascript just before the ending head tag (&#60;code&#62;&#38;lt;/head&#38;gt;&#60;/code&#62;)&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
  function slideshow(){
    if(current_imgid == tempgallery.length-1){
      current_imgid = 0;
    }
    nextimage(current_imgid);
    setTimeout(&#38;#39;slideshow()&#38;#39;,slidespeed);
  }
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Step-2:&#60;br /&#62;
Add the following to your body tag (&#60;code&#62;&#38;lt;body&#38;gt;&#60;/code&#62;)...&#60;br /&#62;
&#60;code&#62;onLoad=&#38;quot;setTimeout(&#38;#39;slideshow()&#38;#39;,slidespeed)&#38;quot;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now your body tag should look like...&#60;br /&#62;
&#60;code&#62;&#38;lt;body onLoad=&#38;quot;setTimeout(&#38;#39;slideshow()&#38;#39;,slidespeed)&#38;quot;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Refresh the gallery page in the browser!&#60;br /&#62;
Enjoy!&#60;/p&#62;
&#60;p&#62;Hope it helps&#60;br /&#62;
Regards,&#60;br /&#62;
~Akash&#60;br /&#62;
&#60;code&#62;&#60;a href=&#34;mailto:akashkhairate@gmail.com&#34;&#62;akashkhairate@gmail.com&#60;/a&#62;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>undertakingyou on "slideshow/Autoplay feature in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshowautoplay-feature-in-gallery#post-1138</link>
			<pubDate>Fri, 10 Apr 2009 01:48:25 +0000</pubDate>
			<dc:creator>undertakingyou</dc:creator>
			<guid isPermaLink="false">1138@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;So in the meantime I did a crude hack to get a 'slideshow' working with e2_gallery.&#60;br /&#62;
In e2photo.js add:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
var autodelay=5; //For time of pictures to appear. Set in seconds. (e.g.: 5 == 5 Seconds)&#60;br /&#62;
var auto=true; //set to true or false, if true it will run this as a slideshow&#60;br /&#62;
var total=tempgallery.length-1;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;In e2Photo2.js replace function nextimage with:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
function nextimage(current_imgid){&#60;/p&#62;
&#60;p&#62;	newimgid = Number(current_imgid)+1;&#60;br /&#62;
	if (newimgid&#38;gt;total){&#60;br /&#62;
	newimgid = 0;&#60;br /&#62;
	}&#60;br /&#62;
	newwidth =imggallery[newimgid][1]&#60;br /&#62;
	newheight =imggallery[newimgid][2]&#60;br /&#62;
	newimgindex =imggallery[newimgid][8]&#60;br /&#62;
	newimgid = imggallery[newimgid][8]&#60;br /&#62;
	cwidth=imggallery[current_imgid][1]&#60;br /&#62;
	cheight=imggallery[current_imgid][2]&#60;br /&#62;
        checknext(newimgid);&#60;br /&#62;
        nextorprev=1;&#60;br /&#62;
	getstarted(Number(newwidth), Number(newheight), 'imgloader',Number(newimgindex) ,Number(newimgid) , Number(current_imgid), Number(cwidth), Number(cheight))&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;code&#62;&#60;/p&#62;
&#60;p&#62;Finally in e2photo2.js replace loadfirstimage() with:&#60;/p&#62;
&#60;p&#62;&#60;/code&#62;&#60;code&#62;&#60;br /&#62;
function loadfirstimage(currentwidth,currentheight){&#60;br /&#62;
	var fadefirst = new Fx.Style('imgloader','opacity', {duration:fadespeed });&#60;br /&#62;
	fadefirst.set(0);&#60;br /&#62;
	var firsttitlefade = new Fx.Style('imgtitle','opacity', {duration:transspeed });&#60;br /&#62;
	firsttitlefade.set(0);&#60;br /&#62;
	function setfirstimage(){&#60;br /&#62;
		var newHTML = &#34;&#34;;&#60;br /&#62;
		$('imgloader').setHTML(newHTML);&#60;/p&#62;
&#60;p&#62;		var firsttitle=document.getElementById('imgtitle');&#60;br /&#62;
		firsttitle.innerHTML=&#34;&#60;strong&#62;&#34;+tempgallery[0][4]+&#34;&#60;/strong&#62; &#34;+tempgallery[0][7];&#60;br /&#62;
		fadefirst.start(0,1);&#60;br /&#62;
		//firsttitlefade.start(0,1);&#60;br /&#62;
		currentheight=imggallery[0][2];&#60;br /&#62;
		currentwidth=imggallery[0][1];&#60;br /&#62;
	}&#60;br /&#62;
	new Asset.image(imggallery[0][0], {onload: setfirstimage});&#60;br /&#62;
	test=self.setInterval(&#34;nextimage(current_imgid)&#34;,autodelay*1000);&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This turns what is there into slideshow, it does not currently offer an option of slideshow or standard gallery, it is slideshow only. Really, there is just 4 new lines of code. But it seemed easier to quote the entire function so you could see it. Also, if you click on an image it does not reset the interval. Not yet anyways.&#60;/p&#62;
&#60;p&#62;Any thoughts or suggestions?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "slideshow/Autoplay feature in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshowautoplay-feature-in-gallery#post-1136</link>
			<pubDate>Thu, 09 Apr 2009 17:18:39 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1136@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I'm working on it now and hope to have a video demonstration with a way to put your name on a mailing list soon.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>undertakingyou on "slideshow/Autoplay feature in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshowautoplay-feature-in-gallery#post-1134</link>
			<pubDate>Thu, 09 Apr 2009 03:08:05 +0000</pubDate>
			<dc:creator>undertakingyou</dc:creator>
			<guid isPermaLink="false">1134@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;This is a great product. If it could do a slideshow and start automatically, while still looking the same and resting inside the page, it would be awesome. &#60;/p&#62;
&#60;p&#62;Any ETA on the next version? A mailing list so we can follow it? Any way to submit patches should I hack something together?&#60;br /&#62;
Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "slideshow/Autoplay feature in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshowautoplay-feature-in-gallery#post-1123</link>
			<pubDate>Mon, 30 Mar 2009 15:56:18 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1123@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;This version does not have a slideshow.  I am coming out with a new photo gallery which will have it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>titomc on "slideshow/Autoplay feature in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshowautoplay-feature-in-gallery#post-1122</link>
			<pubDate>Sat, 28 Mar 2009 18:08:32 +0000</pubDate>
			<dc:creator>titomc</dc:creator>
			<guid isPermaLink="false">1122@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;hi guys..first of all..thanks a lot for making such a cool gallery..i set up the gallery in my site. I was wondering if there is an autoplay feature.If its there where do i set it.I want the gallery to slideshow the images upon loading..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Slideshow?"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow#post-645</link>
			<pubDate>Fri, 06 Jun 2008 15:35:59 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">645@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I was getting to much spam on the submission form, I am trying to come up with a better solution for adding to my sign up list.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rasch on "Slideshow?"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow#post-643</link>
			<pubDate>Fri, 06 Jun 2008 09:29:29 +0000</pubDate>
			<dc:creator>rasch</dc:creator>
			<guid isPermaLink="false">643@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Nothin there about the Pro?!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Slideshow?"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow#post-594</link>
			<pubDate>Tue, 06 May 2008 17:49:24 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">594@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Sign up to find out when I release e2 gallery pro, it will have a slideshow feature.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.e2interactive.com/e2_photo_gallery/&#34;&#62;E2 Gallery Pro&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>yubox on "Slideshow?"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow#post-593</link>
			<pubDate>Tue, 06 May 2008 15:06:47 +0000</pubDate>
			<dc:creator>yubox</dc:creator>
			<guid isPermaLink="false">593@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Any ideas about slideshow? I'll glad to find it for e2 gallery.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
