okay chief - you've supplied code - an excellent start!
you can delete all of sample five except this part:
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'},
{title:'Nunc adipiscing', autor:'Dolor',
date:'9 Feb 2007',
link:'http://www.link3.com'},
{title:'Phasellus volutpat pharetra',
autor:'Sit', date:'22 Jul 2007',
link:'http://www.link4.com'},
{title:'Sed sollicitudin diam', autor:'Amet',
date:'30 Set 2007',
link:'http://www.link5.com'},
{title:'Ut quis magna vel',
autor:'Consecteur', date:'5 Nov 2007',
link:'http://www.link6.com'},
{title:'Curabitur et ante in',
autor:'Adipsim', date:'12 Mar 2007',
link:'http://www.link7.com'},
{title:'Aliquam commodo', autor:'Colom',
date:'10 Abr 2007',
link:'http://www.link8.com'}
];
You see that variable name? That's being used in sample 5 and sample 6
- the author just didn't do a great job of calling it out.
Let me know if that doesn't solve it for you.
-keif
On Sep 30, 1:09 pm, elvisparsley <[EMAIL PROTECTED]> wrote:
> I am trying noobslide 6, but I am not able to do it.
>
> If I try to delete anything here, it does not work.
>
> =============
>
> <?xml version="1.0" encoding="UTF-8"?>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
> "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
> <head>
> <title>noobSlide - mootools</title>
> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
> <link rel="stylesheet" href="_web.css" type="text/css" media="screen"
> />
> <link rel="stylesheet" href="style.css" type="text/css"
> media="screen" />
> <script type="text/javascript" src="mootools-1.2-core.js"></script>
> <script type="text/javascript"
> src="_class.noobSlide.packed.js"></script>
> <script type="text/javascript">
> window.addEvent('domready',function(){
>
> //SAMPLE 5 (mode: vertical, using "onWalk" )
> var info5 = $('info5').set('opacity',0.5);
> 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'},
> {title:'Nunc adipiscing', autor:'Dolor', date:'9 Feb
> 2007',
> link:'http://www.link3.com'},
> {title:'Phasellus volutpat pharetra', autor:'Sit',
> date:'22 Jul 2007',
> link:'http://www.link4.com'},
> {title:'Sed sollicitudin diam', autor:'Amet',
> date:'30 Set 2007',
> link:'http://www.link5.com'},
> {title:'Ut quis magna vel', autor:'Consecteur',
> date:'5 Nov 2007',
> link:'http://www.link6.com'},
> {title:'Curabitur et ante in', autor:'Adipsim',
> date:'12 Mar 2007',
> link:'http://www.link7.com'},
> {title:'Aliquam commodo', autor:'Colom', date:'10 Abr
> 2007',
> link:'http://www.link8.com'}
> ];
> var nS5 = new noobSlide({
> mode: 'vertical',
> box: $('box6'),
> size: 180,
> items: sampleObjectItems,
>
> onWalk: function(currentItem){
> info5.empty();
> new Element('h4').set('html','
> '+currentItem.link+' link
> '+currentItem.title).inject(info5);
> new Element('p').set('html','Autor:
> '+currentItem.autor+'
> Date: '+currentItem.date).inject(info5);
> }
> });
>
> //SAMPLE 6 (on "mouseenter" walk)
> var info6 = $('box6').getNext().set('opacity',0.5);
>
> var nS6 = new noobSlide({
> mode: 'vertical',
> box: $('box6'),
> items: sampleObjectItems,
> size: 180,
> handles: $$('#handles6_1 div').extend($$('#handles6_2
> div')),
> handle_event: 'mouseenter',
> addButtons: {
> previous: $('prev6'),
> play: $('play6'),
> stop: $('stop6'),
> playback: $('playback6'),
> next: $('next6')
> },
> button_event: 'click',
> fxOptions: {
> duration: 1000,
> transition: Fx.Transitions.Back.easeOut,
> wait: false
> },
> onWalk: function(currentItem,currentHandle){
> info6.empty();
> new Element('h4').set('html','
> '+currentItem.link+' link
> '+currentItem.title).inject(info6);
> new Element('p').set('html','Autor:
> '+currentItem.autor+'
> Date: '+currentItem.date).inject(info6);
> this.handles.set('opacity',0.3);
> currentHandle.set('opacity',1);
> }
> });
>
> });
> </script>
> </head>
> <body>
> <div id="cont">
>
> <div id="info5"></div>
>
> <!-- SAMPLE 6 -->
> <h2>Sample 6</h2>
> <div class="sample sample6">
> <div class="thumbs" id="handles6_1">
> <div> images/noobimg1.jpg </div>
> <div> images/noobimg2.jpg </div>
> <div> images/noobimg3.jpg </div>
> <div> images/noobimg4.jpg </div>
> </div>
> <div class="mask6">
> <div id="box6">
> images/noobimg1.jpg
> images/noobimg2.jpg
> images/noobimg3.jpg
> images/noobimg4.jpg
> images/noobimg5.jpg
> images/noobimg6.jpg
> images/noobimg7.jpg
> images/noobimg8.jpg
> </div>
> <div class="info"></div>
> </div>
> <div class="thumbs" id="handles6_2">
> <div> images/noobimg5.jpg </div>
> <div> images/noobimg6.jpg </div>
> <div> images/noobimg7.jpg </div>
> <div> images/noobimg8.jpg </div>
> </div>
> <p class="buttons">
> << Previous
> <Playback
> Stop
> Play >
> Next >>
> </p>
> </div>
>
> </div>
> </body>
> </html>
>
> Can anyone help me please?
> --
> View this message in
> context:http://n2.nabble.com/Noobslide-number-6-does-not-work-tp1129480p11294...
> Sent from the MooTools Users mailing list archive at Nabble.com.