<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: AviaSlider Time Delay Between Images</title>
		<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images</link>
		<description>Support Forum - Topic: AviaSlider Time Delay Between Images</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 08:12:05 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/aviaslider-time-delay-between-images" rel="self" type="application/rss+xml" />

		<item>
			<title>bitcom on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-14560</link>
			<pubDate>Fri, 11 Mar 2011 12:35:00 +0000</pubDate>
			<dc:creator>bitcom</dc:creator>
			<guid isPermaLink="false">14560@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Still doesn't work. When I comment out those 2 js files, I just get the spinning loader image and nothing happens.&#60;/p&#62;
&#60;p&#62;Ya I've been through the Documentation over and over. Doesn't really help a beginner like me. And I downloaded from Code Canyon not Theme Forest. Is there a difference?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-14522</link>
			<pubDate>Fri, 11 Mar 2011 06:43:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">14522@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;What happens when you remove custom.min.js? You don't need it because you initialise the slider in the html head. If you don't need prettyphoto custom.min.js isn't required.&#60;/p&#62;
&#60;p&#62;Docs are included in the themeforest download package :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bitcom on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-14478</link>
			<pubDate>Thu, 10 Mar 2011 21:46:01 +0000</pubDate>
			<dc:creator>bitcom</dc:creator>
			<guid isPermaLink="false">14478@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks so much for your help Dude but it still isn't working. I changed the script code in the head section as you suggested and it still changes slides at the default speed.&#60;/p&#62;
&#60;p&#62;Question: Does this code being in the head section override the code that is in the linked js files? What purpose do those linked js files serve at this point? If I do as you suggested earlier in this thread and switch to the custom.js file from the custom.min.js it still doesn't work.&#60;/p&#62;
&#60;p&#62;Is there some documentation that explains what those other js files do and why they are needed. It seems as soon as I change any of those links the image load just hangs and nothing ever happens.&#60;/p&#62;
&#60;p&#62;As you can see I'm a novice at this javascript stuff and I really appreciate the help.&#60;/p&#62;
&#60;p&#62;Rick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-14443</link>
			<pubDate>Thu, 10 Mar 2011 17:26:03 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">14443@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
sorry for the late reply.&#60;br /&#62;
I think you've a small syntax error in the initialisation code. Instead of:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39;&#38;gt;
$(&#38;#39;#frontpage-slider&#38;#39;).aviaSlider({
    blockSize: {height: 80, width:80},
    transition: &#38;#39;slide&#38;#39;,
    display: &#38;#39;diagonaltop&#38;#39;,
    switchMovement: true
	autorotationSpeed:10	 // duration between autorotation switch in Seconds
});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;use:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39;&#38;gt;
$(&#38;#39;#frontpage-slider&#38;#39;).aviaSlider({
    blockSize: {height: 80, width:80},
    transition: &#38;#39;slide&#38;#39;,
    display: &#38;#39;diagonaltop&#38;#39;,
    switchMovement: true,
	autorotationSpeed:10	 // duration between autorotation switch in Seconds
});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You forgot a &#34;,&#34; after &#34;switchMovement&#34;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bitcom on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-14206</link>
			<pubDate>Tue, 08 Mar 2011 18:26:07 +0000</pubDate>
			<dc:creator>bitcom</dc:creator>
			<guid isPermaLink="false">14206@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for this but I'm still having trouble changing the rotation speed. Here's the page the slider is located...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.full-service-janitorial.com/index.html&#34; rel=&#34;nofollow&#34;&#62;http://www.full-service-janitorial.com/index.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;When I switch to the edited custom.js file from the custom.min.js the images don't load and I just get the spinning circle. I must be missing something.&#60;/p&#62;
&#60;p&#62;And do I need all of those js files specified in the header? Other posts I've read seemed to indicate that I didn't.&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-10946</link>
			<pubDate>Wed, 05 Jan 2011 10:28:02 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10946@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that you solved the problem :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reformedman on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-10928</link>
			<pubDate>Wed, 05 Jan 2011 06:43:46 +0000</pubDate>
			<dc:creator>reformedman</dc:creator>
			<guid isPermaLink="false">10928@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you Dude,&#60;br /&#62;
For anyone checking this problem in the future:&#60;/p&#62;
&#60;p&#62;Your index file where the slider appears must be changed&#60;br /&#62;
from&#60;br /&#62;
&#38;lt;script type='text/javascript' src='js/custom.min.js'&#38;gt;&#38;lt;/script&#38;gt;&#60;br /&#62;
to&#60;br /&#62;
&#38;lt;script type='text/javascript' src='js/custom.js'&#38;gt;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;and the parameter autorotationSpeed must be added to the public &#38;gt; js &#38;gt; custom.js file&#60;br /&#62;
like the following:&#60;br /&#62;
$('#fading_curtain').aviaSlider({	blockSize: {height: 'full', width:40},&#60;br /&#62;
display: 'topleft',&#60;br /&#62;
transition: 'fade',&#60;br /&#62;
betweenBlockDelay:150,&#60;br /&#62;
animationSpeed: 600,&#60;br /&#62;
switchMovement: true,&#60;br /&#62;
autorotationSpeed:12		// duration between autorotation switch in Seconds&#60;br /&#62;
});&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-10548</link>
			<pubDate>Thu, 23 Dec 2010 10:10:11 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10548@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
the reason why it doesn't work is because you're using custom.min.js.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;js/custom.min.js&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change the code line to:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;js/custom.js&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and it should work :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reformedman on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-10543</link>
			<pubDate>Thu, 23 Dec 2010 08:05:53 +0000</pubDate>
			<dc:creator>reformedman</dc:creator>
			<guid isPermaLink="false">10543@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you for the reply but as I requested before I do not know which file to alter and so I would need that information to know where to make the change.&#60;/p&#62;
&#60;p&#62;I looked through files and found one that contained something similar to what you posted in:&#60;br /&#62;
public &#38;gt; js &#38;gt; custom.js&#60;br /&#62;
I made the change there and reset my cookies and refreshed and it still comes up with 6 seconds for each slide.&#60;br /&#62;
I changed all the similar areas; there were about 4 areas that had the code&#60;br /&#62;
$('#fading_curtain').aviaSlider({	blockSize: {height: 'full', width:40},&#60;br /&#62;
display: 'topleft',&#60;br /&#62;
transition: 'fade',&#60;br /&#62;
betweenBlockDelay:150,&#60;br /&#62;
animationSpeed: 600,&#60;br /&#62;
switchMovement: true,&#60;br /&#62;
});&#60;/p&#62;
&#60;p&#62;So I add the line to each exactly as you said and it didn't work.&#60;/p&#62;
&#60;p&#62;Please help me also to change my password for these forums if possible.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-10510</link>
			<pubDate>Wed, 22 Dec 2010 10:20:58 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">10510@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
just add following code to your aviaslider initialisation function:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;autorotationSpeed:12,		// duration between autorotation switch in Seconds&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;i.e. like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$(&#38;#39;#fading_curtain&#38;#39;).aviaSlider({	blockSize: {height: &#38;#39;full&#38;#39;, width:40},
display: &#38;#39;topleft&#38;#39;,
transition: &#38;#39;fade&#38;#39;,
betweenBlockDelay:150,
animationSpeed: 600,
switchMovement: true,
autorotationSpeed:12		// duration between autorotation switch in Seconds
});&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>reformedman on "AviaSlider Time Delay Between Images"</title>
			<link>http://www.kriesi.at/support/topic/aviaslider-time-delay-between-images#post-10484</link>
			<pubDate>Tue, 21 Dec 2010 13:24:47 +0000</pubDate>
			<dc:creator>reformedman</dc:creator>
			<guid isPermaLink="false">10484@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have researched and found a lot of threads that references a file called fuction.php. I can't find that file in any of the folders for this plugin. I have also found that there is a js parameter called animationSpeed or animationDelay, I don't remember.&#60;br /&#62;
But I can't find one that effectively changes the rate of my images.&#60;/p&#62;
&#60;p&#62;I am simply trying to change how long one picture stays up before it changes to the next picture.&#60;br /&#62;
It seems to be 6 seconds according to my stopwatch right now, I want to change it to 12 seconds.&#60;/p&#62;
&#60;p&#62;Please tell me the folder and file location and also which parameter I need to change?&#60;br /&#62;
I would be appreciative for your help.&#60;/p&#62;
&#60;p&#62;PS. How do I change my password on this forum to something that I choose? The password generator created an impossible password for me to remember.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
