Slideshow Layout - Hide Slider

Last post 04-29-2011, 8:42 AM by ramchander. 2 replies.
Sort Posts: Previous Next
  •  04-27-2011, 12:32 PM 67349

    Slideshow Layout - Hide Slider

    Hi,
     
    I am currently using Slideshow layout in my website. can anyone please provide me with a code how to hide slider in the bottom of the Slideshow layout so it will show only sliding images and also how can i increase the slide timer.
     
    Thanks for your help
     
    Ram 
     
     

    Ramchander Pamidimukkala
  •  04-27-2011, 10:22 PM 67350 in reply to 67349

    Re: Slideshow Layout - Hide Slider

    Hi ramchander,
     
    how to hide slider in the bottom of the Slideshow layout so it will show only sliding images
     
    1. Open file D:\2005\Gallery\CuteSoft_Client\Gallery\Layout\SlideShow\Template.htm
     
    2. Find sectionb below
     
        <tr>
                <td style='width:60px;text-align:right;vertical-align:middle;'>
                    <img class='BlackSliderButton' id="dng_btn_config" style='width:16px;height:16px' />
                    <img class='BlackSliderButton' id='dng_btn_prev' style='width:16px;height:16px' />
                </td>
                <td style='background-color:black;border:solid 3px #333333;' id='dng_tabcontainer'></td>
                <td style='width:90px;vertical-align:middle;'>
                    <img class='BlackSliderButton' id="dng_btn_next" style='width:16px;height:16px' />
                    <img class='BlackSliderButton' id="dng_btn_play" style='width:16px;height:16px' />
                    <img class="BlackSliderButton" id="dng_btn_slider" style='width:16px;height:16px' onclick="GalleryBrowser.Execute(this,'ShowSlider');return false;" />
                </td>
            </tr>
     
    3. Change to (just add the red code)
     
    <tr>
                <td style='width:60px;text-align:right;vertical-align:middle;'>
                    <img class='BlackSliderButton' id="dng_btn_config" style='width:16px;height:16px; visibility:hidden'/>
                    <img class='BlackSliderButton' id='dng_btn_prev' style='width:16px;height:16px; visibility:hidden'  />
                </td>
                <td style='background-color:black;border:solid 3px #333333;' id='dng_tabcontainer'></td>
                <td style='width:90px;vertical-align:middle;'>
                    <img class='BlackSliderButton' id="dng_btn_next" style='width:16px;height:16px;visibility:hidden' />
                    <img class='BlackSliderButton' id="dng_btn_play" style='width:16px;height:16px;visibility:hidden' />
                    <img class="BlackSliderButton" id="dng_btn_slider" style='width:16px;height:16px;visibility:hidden' onclick="GalleryBrowser.Execute(this,'ShowSlider');return false;" />
                </td>
            </tr>
     
     
    how can i increase the slide timer
     
    1. Open file
     
    2. Find section below
     
        if(this.playing)
                {
                    this.SetPlayTimeout(this.PlayOnTimer,this._speed*1000,"PlayOnTimer");
                }
     
    3. Change to (the red code, default is 5 seconds.1000 is  1 second)
     
        if(this.playing)
                {
                    this.SetPlayTimeout(this.PlayOnTimer,1000,"PlayOnTimer");
                }
     
    Regards,
     
    ken
  •  04-29-2011, 8:42 AM 67376 in reply to 67350

    Re: Slideshow Layout - Hide Slider

    Hi Kenneth,
     
    Thanks again. Solved my problem.
     
    Thanks
     
    Ram

    Ramchander Pamidimukkala
View as RSS news feed in XML