"NewbyDeveloper" wrote:
Thanks again - another question...
With the ("roSlideShow") example - I see you passing across the url to the jpeg...
and I've looked at the documentation online - but non the wiser....
How do you pass across an array of files to let the slide show show all those images one after the other?
I'm actually passing an array of urls, hence the square brackets,
[ ], around the url list.The list just happens to contain only one item, but could have been written like this, for example:
displaySlideShow ([
{Url: "http://www.welikeviral.com/files/2014/12/8325_8_site.jpeg"}
{Url: "http://www.welikeviral.com/files/2015/01/Hide-And-Seek-3.jpg"}
{Url: "http://www.welikeviral.com/files/2015/01/Hide-And-Seek-5.jpg"}
])
Or this:
contentList = []
contentList.Push ({Url: "http://www.welikeviral.com/files/2014/12/8325_8_site.jpeg"})
contentList.Push ({Url: "http://www.welikeviral.com/files/2015/01/Hide-And-Seek-3.jpg"})
contentList.Push ({Url: "http://www.welikeviral.com/files/2015/01/Hide-And-Seek-5.jpg"})
displaySlideShow (contentList)