Bob_Hazell
(Bob Hazell)
November 13, 2012, 12:09am
1
Does anyone know anyway of getting the Impress theme to automatically load the next image with a timer function and then loop ?
look forward to a solution as its a great theme.
Bob
Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Tim3
(Tim)
November 13, 2012, 12:49pm
2
Hi Bob,
Try adding this code into your Freeway page using Page > HTML Markup > Before End Head;
http://www.freewayactions.com/code/?f=Exhibeo-Impress-Auto-Advance.txt
You can change the timing between images/frames by altering the 4000 in line 25. The value is thousands of a second so ten seconds will be 10000.
If there’s a need for it I’ll clean the code up and add it to the Exhibeo Extras Action;
http://actionsforge.com/actions/view/276-exhibeo-extras
Regards,
Tim.
On 13 Nov 2012, at 00:09, Bob Hazell wrote:
Does anyone know anyway of getting the Impress theme to automatically load the next image with a timer function and then loop ?
Experienced Freeway designer for hire - http://www.freewayactions.com
Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Joe2
(Joe)
November 13, 2012, 4:04pm
3
This can actually be done directly in the code from Exhibeo. You’ll need to open up the xbExport package by right/control clicking on it and choosing Show Package Contents to expose the files first. Once you’ve done this, open the “head” file in a text editor and change the following line:
$( ‘#exibid ’ ).jmslideshow();
to:
$( ‘#exibid ’ ).jmslideshow({autoplay: true, interval: 3500});
You can change the 3500 value to anything you like (it’s the number of milliseconds between each transition). All you need to do then is reimport the xbExport file into the Action. That’s it! We’re planning to add support for those options soon.
Joe
Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Tim3
(Tim)
November 13, 2012, 5:47pm
4
That certainly is easy enough to do.
The thing that caught me out when I tried copying the code you supplied was that FWTalk encoded the single quotes in the code.
Swap these out for regular (dumb) quotes and the code will work.
Regards,
Tim.
Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Bob_Hazell
(Bob Hazell)
November 13, 2012, 7:42pm
5
First class, like Tim said change ’ to " around #exhid an it works just fine.
$( ‘#exibid ’ ).jmslideshow({autoplay: true, interval: 3500});
to
$( “#exibid ” ).jmslideshow({autoplay: true, interval: 3500});
Thank you.
Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
pat
(pat)
November 28, 2012, 7:22pm
6
hi can i do this when i export the html rather than using freeway? how can i make do that?
Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Joe2
(Joe)
November 28, 2012, 7:39pm
7
Sure. Just make the same change in the code that you copy from the section. Change:
$( ‘#exibid ’ ).jmslideshow();
to:
$( ‘#exibid ’ ).jmslideshow({autoplay: true, interval: 3500});
Joe
On 28 Nov 2012, at 19:22, pat email@hidden wrote:
hi can i do this when i export the html rather than using freeway? how can i make do that?
Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
pat
(pat)
November 29, 2012, 9:43am
8
perfect works like a charm!!! look forward to the updates
Exhibeo mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options