YAY! -- The "P" in autoplay was the problem. autoPlay:true --> it
works now!
And I finally saw what the problem was with "link". (My brain is too
tired!) I had gone combing through the javascript files and here it
is in my webpage:
new Element('h4').set('html','<a href="'+currentItem.link+'">link</
a>'+currentItem.title).inject(info6);
Duh! Just changed the ">link<" here.
Thanks a bunch! Vicki
On May 17, 5:44 pm, cbolson <[email protected]> wrote:
> As for the link, that is defined for each image in the
> "sampleObjectItems" array that you should have if you have copied the
> example 6 as per the noobslide original code.
> ie.:
> var sampleObjectItems =[
> {title:'Morbi elementum', autor:'Lorem', date:'5 Jun 2007',
> link:'http://www.link1.com'},
> {title:'Mollis leo', autor:'Ipsum', date:'6 Dic 2007',
> link:'http://www.link2.com'},
> etc.
>
> Chris
>
> On 17 mayo, 23:41, cbolson <[email protected]> wrote:
>
> > >I've tried adding "autoplay: true",
>
> > That should be "autoPlay: true" - ie capital P in the middle there.
>
> > Chris
>
> > On 17 mayo, 23:37, VickiLH <[email protected]> wrote:
>
> > > I did a search on "link" through everything earlier and didn't find
> > > anything. -- My most pressing item is how to get this to autoplay.
>
> > > Thanks, Vicki
>
> > > On May 17, 5:28 pm, Sanford Whiteman <[email protected]>
> > > wrote:
>
> > > > > Sorry --- I took a look at jsFiddle and wasn't really sure what to do
> > > > > with it (after 5pm and I haven't even eaten lunch yet! really don't
> > > > > want to spend the next hour figuring out JsFiddle).
>
> > > > It's a place to paste, edit, and run version-controlled code. It won't
> > > > take an hour!
>
> > > > > -- I haven't found a line 30 that makes sense to me yet.
>
> > > > JS is case-sensitive.
>
> > > > And seriously: search for the word 'link' in your codebase.
>
> > > > -- S.