Search.../

showNavigationButtons

Sets or gets whether a slideshow's navigation buttons are shown.

Description

Setting the showNavigationButtons property to true shows the slideshow's navigation buttons. Setting it to false hides the slideshow's navigation buttons.

Getting the showNavigationButtons property returns whether a slideshow's navigation buttons are shown or hidden.

Type:

booleanRead & Write

Was this helpful?

Get whether navigation buttons are shown

Copy Code
1let areNavBtnShown = $w("#mySlideshow").showNavigationButtons; // true
Set navigation buttons to be hidden

Copy Code
1$w("#mySlideshow").showNavigationButtons = false;
Toggle whether navigation buttons are shown

Copy Code
1let myShow = $w("#mySlideshow");
2myShow.showNavigationButtons = !myShow.showNavigationButtons;