OK

This is a bit of a learning curve for me......

OK, have managed to have both TWs show the advance of the tiddlers
through the slide list....and as I said the two copies can use
different display "modes" - size of image - GREAT !!!!etc.

So, the main objective is DONE........THANKS

The extra little wrinkle....a back button...cant get it to work....

See the copy I am working on at - http://dl.dropbox.com/u/284644/CriteriaCW.html

I have managed to insert the back button...it shows up where it
should......and I "duplicated" the sendCommand....this time with the
back counting code you showed......but the button isnt triggerng that
code........set the second button to the duplicated sendCommand (now
called sendbackCommand.....but the button isn´t triggering it for some
reason.

Could you have a quick look and see where I went wrong ?

And thanks again...I am pretty excited at this new development...I now
have a way of developing and showing presentations that I really
like......I can see myself using it a great deal.

Thanks in Advance

Skye


On 16 Jun, 03:36, FND <[email protected]> wrote:
> > when I click "next" in the first TW (host) TW it opens the next slide
> > in the target TW, but not in the host TW
>
> That's right. It would be trivial to make the macro open the next
> tiddler in both windows* - it's just a UI issue at that point...
>
> > is it possible to have a "back" button as well
>
> This should be relatively easy as well - the code for determining the
> next slide could simply be reversed:
>      var next = slides.indexOf(current) + 1;
>      next = slides[next < slides.length ? next : 0];
> becomes:
>      var prev = slides.indexOf(current) - 1;
>      next = slides[next >= 0 ? next : slides.length - 1];
>
> -- F.
>
> * "opener" in the code refers to the target window; replacing that with
> "window" would perform the same operation on the "host" window

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to