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