Results 1 to 2 of 2

Thread: no buttons on swiss army slide show

  1. #1
    Join Date
    Mar 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default no buttons on swiss army slide show

    1) Script Title: swiss army slideshow

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex14/swissarmy/

    3) Describe problem: i want to have no buttons at all on my slideshow. but still use the mouseover pause feature and the links probably.

    seems like a simple thing but i couldn't figure it out

    thanks.

    jon

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    This as an array declaration in the head section would do that:

    Code:
    var array_name=[];
    //configure the below images and descriptions (empty here) to your own, note optional links. 
    array_name[0] = ["1_side.jpg", "", "http://www.google.com"];
    array_name[1] = ["2_side.jpg", "", "http://www.yahoo.com"];
    array_name[2] = ["3_side.jpg", "", "http://www.dynamicdrive.com"];
    array_name[3] = ["5_side.jpg", "", "http://www.msn.com"];
    //optional properties for these images:
    array_name.no_descriptions=1; //use for no descriptions displayed
    array_name.pause=1; //use for pause onmouseover
    array_name.no_controls=1; //use images for controls
    You didn't specify if you wanted descriptions or not so, I chose not.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •