Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
abertrande
Experienced
Topic Author
Posts: 121
Joined: 03 Jul 2013, 06:13

Button image slideshow

09 Jul 2013, 08:09

Hello
I would like to know if it's possible not to have the "close button" just on the slideshow of my start page
thank for your help
http://www.abertrande.com
Arnaud
Attachments
Capture d’écran 2013-07-09 à 14.02.27.png
Capture d’écran 2013-07-09 à 14.02.27.png (106.48 KiB) Viewed 3348 times
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Button image slideshow

09 Jul 2013, 21:14

It seems you have added the correct parameters, but you have an empty space which breaks the functionality:
Code
settings.startmode=image&image.slideshow.autostart=true&thumbnails.thumbnailscroller.enabled=false&controls.largecontrols.enabled=false&controls.maincontrols.enabled=false&image.imagebuttons.enabled=false&image.closebutton.enabled=false &image.slideshow.interval=4
See the empty space after the closebutton setting? It should look like this:
Code
settings.startmode=image&image.slideshow.autostart=true&thumbnails.thumbnailscroller.enabled=false&controls.largecontrols.enabled=false&controls.maincontrols.enabled=false&image.imagebuttons.enabled=false&image.closebutton.enabled=false&image.slideshow.interval=4
 
User avatar
abertrande
Experienced
Topic Author
Posts: 121
Joined: 03 Jul 2013, 06:13

Re: Button image slideshow

10 Jul 2013, 03:49

it's good
thanks :)
and it's possible to disable the title just for this slideshow ?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Button image slideshow

10 Jul 2013, 12:11

abertrande wrote:and it's possible to disable the title just for this slideshow ?
Add this to the end of the parameters string, without any space:
Code
&image.text.text1.enabled=false
 
User avatar
abertrande
Experienced
Topic Author
Posts: 121
Joined: 03 Jul 2013, 06:13

Re: Button image slideshow

10 Jul 2013, 12:43

mjau-mjau wrote:
abertrande wrote:and it's possible to disable the title just for this slideshow ?
Add this to the end of the parameters string, without any space:
Code
&image.text.text1.enabled=false
Thank
I tried without space ;)
and it does not work .. I still have the title
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Button image slideshow

10 Jul 2013, 22:59

abertrande wrote:and it does not work .. I still have the title
Thats because you have manually already disabled the text1 element, and instead enabled the text2 element which reacts on image hover. Since you are using text2 instead, you would need to change the string to following:
Code
&image.text.text2.enabled=false
 
User avatar
abertrande
Experienced
Topic Author
Posts: 121
Joined: 03 Jul 2013, 06:13

Re: Button image slideshow

11 Jul 2013, 01:41

mjau-mjau wrote:
abertrande wrote:and it does not work .. I still have the title
Thats because you have manually already disabled the text1 element, and instead enabled the text2 element which reacts on image hover. Since you are using text2 instead, you would need to change the string to following:
Code
&image.text.text2.enabled=false

of course .. sorry;)
thank for your help