Quote:$albumobject = new Album($galleryobject,"");
So does that mean the line of code now becomes;
<?php $albumobject = new Album($galleryobject,""); printSlideShow(true,false,$albumobject, "", 600,400); ?>
That code is completly wrong.
First, did you set up $galleryobject? If not that is empty. Generally the gallery object is availble on theme pages already.
Secondly. `$albumobject = new Album($galleryobject,"")` this does not create any album because you don'T pass an album name... The current album has also a global var that is setup on album.php and image.php.
Btw, you didn't answer my question above. For the standard slideshow usage see the standard themes. If you want to call it directly on a theme page you probably really should re-read the object model tutorial.