Search.../

label

Sets or gets the label of a slideshow button.

Type:

stringRead & Write, default value is Empty string

Was this helpful?

Get the label of a slideshow button

Copy Code
1const buttonLabel = $w("#mySlideshowButton").label; // "Submit"
Set the label of a slideshow button

Copy Code
1$w("#mySlideshowButton").label = "New Label";