top of page
bottom of page
$w.onReady(function () { $w("#uploadButton").onChange(async () => { const uploadedFiles = await $w("#uploadButton").uploadFiles(); if (uploadedFiles.length > 0) { const imageUrl = uploadedFiles[0].fileUrl; // Send image URL to HTML component $w("#html1").postMessage({ type: "loadImage", image: imageUrl }); } }); });
$w.onReady(function () { $w("#uploadButton").onChange(async () => { const uploadedFiles = await $w("#uploadButton").uploadFiles(); if (uploadedFiles.length > 0) { const imageUrl = uploadedFiles[0].fileUrl; // Send image URL to HTML component $w("#html1").postMessage({ type: "loadImage", image: imageUrl }); } }); });