Hi all,
I’d like to know if it’s possible to assign a custom filename to an image file once it’s been uploaded using the uploadButton.
For reference, here is what I’m trying to do:
$w("#uploadButton1").startUpload()
.then( (uploadedFile) => {
// change the name of the uploaded file to my own custom id
// push the image to AWS S3
});
Any ideas?
Thanks,
Alvi