Search.../

buttonLabel

Sets or gets the label on the upload button.

Type:

stringRead & Write

Was this helpful?

Get an upload button's label

Copy Code
1let label = $w("#myUploadButton").buttonLabel; // "Choose File"
Set an upload button's label

Copy Code
1$w("#myUploadButton").buttonLabel = "Choose File";