puter.ui.onItemsOpened()Specify a function to execute when the one or more items have been opened. Items can be opened via a variety of methods such as: drag and dropping onto the app, double-clicking on an item, right-clicking on an item and choosing an app from the 'Open With...' submenu.
Deprecated This handler also fires when items are dropped onto the app. New code should handle the drop event for drag-and-drop instead.
Note onItemsOpened is not called when items are opened using showOpenFilePicker().
puter.ui.onItemsOpened(handler)
handler (Function)
A function to execute after items are opened by user action.
<html>
<body>
<script src="https://js.puter.com/v2/"></script>
<script>
puter.ui.onItemsOpened(function(items){
document.body.innerHTML = JSON.stringify(items);
})
</script>
</body>
</html>