Hi all,
I am using the Action Center with unattended robots.
I build several ‘Tasks’ with the UiPath Form Designer (activity Create Form Task).
To make life simpler for the users, I would like to create a button that saves some text/values in the clipboard.
Something like this:
Copy
<button onclick="copyText()">Copy</button>
<script>
function copyText() {
/* Copy text into clipboard */
navigator.clipboard.writeText("Hello from clipboard");
}
</script>
but that doesn’t work on the action center.
Any ideas? Workaround?
Best regards