Warning: Please include a link to the DD script in question in your post. See
this thread for the proper posting format when asking a question.
With Swiss Army, you don't delete things, you configure it. So, for #1 on your list, simply omit the:
counter=1
property (from the demo code, get rid of/don't use the red part):
Code:
var slides2=[]; //SECOND SLIDESHOW
//configure the below images and descriptions to your own.
slides2[0] = ["photo6.jpg", "Crucifix"];
slides2[1] = ["photo7.jpg", "Alter Boys"];
slides2[2] = ["photo8.jpg", "Young Pan"];
slides2[3] = ["photo9_thumb.jpg", "Mona Lisa"];
//optional properties for these images:
slides2.desc_prefix='<b>Description:<\/b> '; //string prefix for image descriptions display
slides2.controls_top=1; //use for top controls
slides2.counter=1; //use to show image count
slides2.width=140; //use to set width of widest image if dimensions vary
slides2.height=225; //use to set height of tallest image if dimensions vary
slides2.no_auto=1; //use to make show completely user operated (no play button, starts in stopped mode)
slides2.use_alt=1; //use for descriptions as images alt attributes
slides2.use_title=1; //use for descriptions as images title attributes
slides2.nofade=1; //use for no fade-in, fade-out effect for this show
slides2.border=2; //set border width for images
slides2.border_color='lightblue'; //set border color for images
For #2 on your list, that is also the default, so omit/don't use the:
controls_top=1
property (from the demo code, get rid of/don't use the red part):
Code:
var slides2=[]; //SECOND SLIDESHOW
//configure the below images and descriptions to your own.
slides2[0] = ["photo6.jpg", "Crucifix"];
slides2[1] = ["photo7.jpg", "Alter Boys"];
slides2[2] = ["photo8.jpg", "Young Pan"];
slides2[3] = ["photo9_thumb.jpg", "Mona Lisa"];
//optional properties for these images:
slides2.desc_prefix='<b>Description:<\/b> '; //string prefix for image descriptions display
slides2.controls_top=1; //use for top controls
slides2.counter=1; //use to show image count
slides2.width=140; //use to set width of widest image if dimensions vary
slides2.height=225; //use to set height of tallest image if dimensions vary
slides2.no_auto=1; //use to make show completely user operated (no play button, starts in stopped mode)
slides2.use_alt=1; //use for descriptions as images alt attributes
slides2.use_title=1; //use for descriptions as images title attributes
slides2.nofade=1; //use for no fade-in, fade-out effect for this show
slides2.border=2; //set border width for images
slides2.border_color='lightblue'; //set border color for images
For #3 on your list, Swiss Army can be made to look exactly like Ultimate Fade and be used several times on a page, and each use can be customized differently if desired, so there is no reason to use both on the same page:
Code:
var slides2=[]; //SECOND SLIDESHOW
//configure the below images and descriptions to your own.
slides2[0] = ["photo6.jpg", ""];
slides2[1] = ["photo7.jpg", ""];
slides2[2] = ["photo8.jpg", ""];
slides2[3] = ["photo9_thumb.jpg", ""];
//optional properties for these images:
slides2.no_descriptions=1;
slides2.no_controls=1;
slides2.no_added_linebreaks=1;
If you need more help:
Please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks