Hi,
I saw a nice example of a true fade (i.e. not fade out out to black then fade in) between images done in HTML5:
http://forums.culturalheritageimaging.o … ts-in-web/
Example here:
/http://www.arheovisioon.ee/en/uncategor … frared-rti

This would be a nice option to have.  It would be even nicer if you could specify the transition type and time for each image.
Jon

The code is:
<style>
#rotating-item-wrapper {
position: relative;
width: 611px;
height: 411px;
}
.rotating-item {
display: none;
position: absolute;
top:0;
}
</style>
<script>

// Code based on http://trendmedia.com/code/jquery-infinite-rotator/
// Modified by Hembo Pagi
// Released under the GPL license
// http://www.opensource.org/licenses/gpl-license.php
// **********************************************************************
jQuery(function($) {
    $(window).load(function() {
        //initial fade-in time (in milliseconds)
        var initialFadeIn = 1500;
        //interval between items (in milliseconds)
        var itemInterval = 3000;
        //cross-fade time (in milliseconds)
        var fadeTime = 1500;
        //count number of items
        var numberOfItems = $('.rotating-item').length;
        //set current item
        var currentItem = 0;
        //show first item
        $('.rotating-item').eq(currentItem).fadeIn(initialFadeIn);
        $(".rotating-item").click(function() {
            $('.rotating-item').eq(currentItem).fadeOut(fadeTime);
            if(currentItem == numberOfItems -1){
                currentItem = 0;
            } else {
                currentItem++;
            }
            $('.rotating-item').eq(currentItem).fadeIn(fadeTime);
        });
    });
});
</script>
<div id="rotating-item-wrapper">
    <img src="normal.jpg" alt="" class="rotating-item" width="611" height="411" />
    <img src="ir-spec.jpg" alt="" class="rotating-item" width="611" height="411" />
</div>

Hi,
I have been looking for a page that lists the keyboard controls for Juicebox, can't find it.

It seems that Juicebox responds to left and right arrows, but not to up or down arrows or to page up and page down.   I have checked the behavior of powerpoint, adobe reader and a few other slideshow programs.  They equate
right arrow = down arrow = page down = next slide,
left arrow = up arrow = page up = previous slide.

I think these are conventions already established for slide shows.  It would be smart for you to follow them:it might open new uses and users for Juicebox.

edit: just checked some more programs:
the right arrow = page down = next slide and left arrow = page up= previous slide are standard, but the up arrow and down arrow are not always tied to next slide or previous slide.

Jon

Steven wrote:

Is there any way to get a browser to respond to the next slide and previous slide commands of the usual powerpoint remote controls?

I am not familiar with powerpoint remote controls but it is possible to change images in a Juicebox-Pro gallery programmatically by using the showNextImage() and showPreviousImage() methods from the Juicebox-Pro API.

Are these commands tied to the left and right arrow keys in a browser?

I am also not sure of how remotes work, but one guess is that they simulate a keyboard event.  I am pretty sure that they do not simulate left or right arrows.  Maybe page up/down?  Powerpoint responds to these, Firefox does not.
How can I tie page up/down to the showPreviousImage(), showNextImage() methods in Firefox or ie?

Hi,
I tried making a presentation using a Juicebox gallery instead of powerpoint.  There are some serious obstacles to this, but it would be nice to overcome them somehow.  There should be more alternatives to powerpoint.

Main obstacle is the use of remotes.  Is there any way to get a browser to respond to the next slide and previous slide commands of the usual powerpoint remote controls?

Are there any remotes (home theater?) that might allow more control over the slide show?

Jon

Hi,

I am new so apologize in advance for a stupid question.
I want to add images into the middle of a large gallery.  I can do this by the images menuor by dragging and dropping, but always the images are added at the end.  This requires a tedious select and scroll of the image list to put the new images where I want them.  Is there a better way? 
Another issue: the images I have selected in the image list are not indicated in any way and so there is no indication if they are to be copied or cut, or which images are selected.

Jon