Hai.
its possible to copy text to clipboard? Thanks
1 Like
actech
August 27, 2019, 7:33am
2
Hai.
Where should insert it after that, and why?
1 Like
i want to do like this http://www.puravidaapps.com/clipboard.php .
When button or label click, some field in label can be copy and paste outher service.but I don’t know how to apply it in thunkable x
Hi @abdimail6965ab03
here’s a method you can use.
It won’t give you access to the system clipboard, but it will copy text from one location to another within your app.
2 Likes
jared
December 20, 2020, 10:27pm
6
Here is access to the clipboard
I’m wondering if a JavaScript solution would work with the webviewer.
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://thunkable.github.io/webviewer-extension/thunkableWebviewerExtension.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
function copyToClipboard(value) {
var tempInput = document.createElement("textarea");
tempInput.value = value;
document.body.appendChild(tempInput);…
2 Likes